197e2d7e70
- ensure_packages fails because Error: Sun packages must specify a package source - ensure_resource fails for the same reason - get_module_path fails because the modulepath is different - has_interface_with fails because the interface is lo0 not lo
27 lines
726 B
Ruby
Executable file
27 lines
726 B
Ruby
Executable file
#! /usr/bin/env ruby -S rspec
|
|
require 'spec_helper_acceptance'
|
|
|
|
describe 'get_module_path function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
|
|
describe 'success' do
|
|
it 'get_module_paths dne' do
|
|
pp = <<-EOS
|
|
$a = $::is_pe ? {
|
|
'true' => '/etc/puppetlabs/puppet/modules/dne',
|
|
'false' => '/etc/puppet/modules/dne',
|
|
}
|
|
$o = get_module_path('dne')
|
|
if $o == $a {
|
|
notify { 'output correct': }
|
|
} else {
|
|
notify { "failed; module path is '$o'": }
|
|
}
|
|
EOS
|
|
|
|
apply_manifest(pp, :expect_failures => true)
|
|
end
|
|
end
|
|
describe 'failure' do
|
|
it 'handles improper argument counts'
|
|
it 'handles non-numbers'
|
|
end
|
|
end
|