diff options
author | Ashley Penney <ashley.penney@puppetlabs.com> | 2014-04-28 14:55:29 -0400 |
---|---|---|
committer | Ashley Penney <ashley.penney@puppetlabs.com> | 2014-04-28 14:55:29 -0400 |
commit | f8bfe46bbfa4a4737cef9a20cfe1bed04aee4bdc (patch) | |
tree | 3f9e8ee134c0ed8375d3e80987c0801971f32736 /spec/acceptance/validate_bool_spec.rb | |
parent | 0b59dfe64299abd0c7e9a72dd381341cb9a5c260 (diff) | |
parent | 90222959b14a10c3519c88f74e244b13b07fd78b (diff) | |
download | puppet-stdlib-f8bfe46bbfa4a4737cef9a20cfe1bed04aee4bdc.tar.gz puppet-stdlib-f8bfe46bbfa4a4737cef9a20cfe1bed04aee4bdc.tar.bz2 |
Merge pull request #243 from hunner/add_beaker
Add beaker tests for functions.
Diffstat (limited to 'spec/acceptance/validate_bool_spec.rb')
-rw-r--r-- | spec/acceptance/validate_bool_spec.rb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/spec/acceptance/validate_bool_spec.rb b/spec/acceptance/validate_bool_spec.rb new file mode 100644 index 0000000..4e77da2 --- /dev/null +++ b/spec/acceptance/validate_bool_spec.rb @@ -0,0 +1,36 @@ +require 'spec_helper_acceptance' + +describe 'validate_bool function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do + describe 'success' do + it 'validates a single argument' do + pp = <<-EOS + $one = true + validate_bool($one) + EOS + + apply_manifest(pp, :catch_failures => true) + end + it 'validates an multiple arguments' do + pp = <<-EOS + $one = true + $two = false + validate_bool($one,$two) + EOS + + apply_manifest(pp, :catch_failures => true) + end + it 'validates a non-bool' do + { + %{validate_bool('true')} => "String", + %{validate_bool('false')} => "String", + %{validate_bool([true])} => "Array", + %{validate_bool(undef)} => "String", + }.each do |pp,type| + expect(apply_manifest(pp, :expect_failures => true).stderr).to match(/a #{type}/) + end + end + end + describe 'failure' do + it 'handles improper number of arguments' + end +end |