
Modify the .gitreview file, since this project belongs to OpenStack from now on. Modify Rakefile to adapt to OpenStack gerrit's test. Change-Id: I91e6a433dbbef61db59f9dfe1609a7368bf55c11
15 lines
399 B
Ruby
15 lines
399 B
Ruby
require 'puppetlabs_spec_helper/module_spec_helper'
|
|
|
|
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.before :each do
|
|
@default_facts = { :os_service_default => '<SERVICE DEFAULT>' }
|
|
end
|
|
c.mock_with :rspec do |mock_c|
|
|
mock_c = :expect
|
|
end
|
|
end
|
|
|
|
at_exit { RSpec::Puppet::Coverage.report! }
|