
* Add the required files for unit testing. * Add a basic test to validate packaging version. * Fix stdlib syntax to be Puppet compliant. * Fix lint Change-Id: I36fd23534e0c724da8d6683fbf2a1e67aa616ebf
20 lines
526 B
Ruby
20 lines
526 B
Ruby
require 'puppetlabs_spec_helper/module_spec_helper'
|
|
require 'shared_examples'
|
|
require 'webmock/rspec'
|
|
|
|
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.default_facts = {
|
|
:kernel => 'Linux',
|
|
:concat_basedir => '/var/lib/puppet/concat',
|
|
:memorysize => '1000 MB',
|
|
:processorcount => '1',
|
|
:puppetversion => '3.7.3',
|
|
:uniqueid => '123'
|
|
}
|
|
end
|
|
|
|
at_exit { RSpec::Puppet::Coverage.report! }
|