fuel-library/deployment/puppet/stdlib/spec/acceptance/get_module_path_spec.rb
Vasyl Saienko 501e278fa7 Sync stdlib module from puppetlabs
v4.6.0 73474b00b5ae3cbccec6cd0711311d6450139e51
  source https://github.com/puppetlabs/puppetlabs-stdlib

Implements: blueprint upgrade-openstack-puppet-modules

Change-Id: Ieca77090b908543e2af7f3ce75a4e45d404a3a6a
2015-06-12 16:11:02 +03:00

28 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