ac715526ff
This change includes an update to rspec-puppet ~> 2.2 and adjusting the two tests that fail under 2.2 but not 2.1. I believe these failures are related to https://github.com/rodjek/rspec-puppet/issues/266 The get_network_role_properly was previously passing because the return value was not be properly check. In the code we are returning eth0 as the interface for the admin network role and not nil. The get_transformation_property was previously passing because the return value was not correctly checked. Based on the code, the value for eth2 should have been 1024 while the value for eth3 would have been nil. This change updates the eth2 check with 1024 and adds a test case for eth3. Change-Id: I7b87d02d4c702dde68ecd7f4abcd304e686fa795 Closes-Bug: #1509056
19 lines
519 B
Ruby
19 lines
519 B
Ruby
source 'https://rubygems.org'
|
|
|
|
group :development, :test do
|
|
gem 'rake', :require => false
|
|
gem 'pry', :require => false
|
|
gem 'rspec', '~>3.3', :require => false
|
|
gem 'rspec-puppet', '~>2.2.0', :require => false
|
|
gem 'puppetlabs_spec_helper', :require => false
|
|
gem 'puppet-lint', '~> 0.3.2'
|
|
end
|
|
|
|
if puppetversion = ENV['PUPPET_GEM_VERSION']
|
|
gem 'puppet', puppetversion, :require => false
|
|
else
|
|
gem 'puppet', '<4.0', :require => false
|
|
end
|
|
|
|
# vim:ft=ruby
|