Set fixture paths for unit tests

This change defines manifest_dir and module_path expicitly in unit
tests so that modules installed under fixtures directory is properly
loaded.

Closes-Bug: #1930403
Change-Id: I8c0589bccbac4776720badfdb009b966ac2f7087
(cherry picked from commit c0f33c2806)
This commit is contained in:
Takashi Kajinami 2021-06-02 14:03:42 +09:00
parent 3f55c34811
commit 441cea0b57
1 changed files with 5 additions and 2 deletions

View File

@ -5,12 +5,17 @@ require 'shared_examples'
require 'webmock/rspec'
require 'puppet-openstack_spec_helper/facts'
fixture_path = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures'))
# LP1492636 - Cohabitation of compile matcher and webmock
WebMock.disable_net_connect!(:allow => "169.254.169.254")
RSpec.configure do |c|
c.alias_it_should_behave_like_to :it_configures, 'configures'
c.alias_it_should_behave_like_to :it_raises, 'raises'
c.module_path = File.join(fixture_path, 'modules')
c.manifest_dir = File.join(fixture_path, 'manifests')
end
RSpec::Matchers.define :be_absent do
@ -34,5 +39,3 @@ def setup_provider_tests
end
end
end
Dir[File.dirname(__FILE__) + '/support/**/*.rb'].each { |f| require f }