2012-05-31 17:06:34 -07:00
|
|
|
require 'puppetlabs_spec_helper/module_spec_helper'
|
2014-05-15 14:50:33 -04:00
|
|
|
require 'shared_examples'
|
2015-09-06 01:35:45 +02:00
|
|
|
require 'webmock/rspec'
|
2016-09-30 13:31:44 -06:00
|
|
|
require 'puppet-openstack_spec_helper/facts'
|
2016-01-06 21:28:49 -07:00
|
|
|
|
2021-06-02 14:24:25 +09:00
|
|
|
fixture_path = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures'))
|
|
|
|
|
2014-02-03 12:27:54 -05:00
|
|
|
RSpec.configure do |c|
|
|
|
|
c.alias_it_should_behave_like_to :it_configures, 'configures'
|
2014-05-15 14:50:33 -04:00
|
|
|
c.alias_it_should_behave_like_to :it_raises, 'raises'
|
2021-06-02 14:24:25 +09:00
|
|
|
|
|
|
|
c.module_path = File.join(fixture_path, 'modules')
|
|
|
|
c.manifest_dir = File.join(fixture_path, 'manifests')
|
2023-01-30 13:05:55 +09:00
|
|
|
|
|
|
|
c.mock_with :rspec
|
2014-02-03 12:27:54 -05:00
|
|
|
end
|
2015-08-04 11:53:02 -07:00
|
|
|
|
|
|
|
at_exit { RSpec::Puppet::Coverage.report! }
|