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/chop_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/chop_spec.rb')
-rw-r--r-- | spec/acceptance/chop_spec.rb | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/spec/acceptance/chop_spec.rb b/spec/acceptance/chop_spec.rb new file mode 100644 index 0000000..8774390 --- /dev/null +++ b/spec/acceptance/chop_spec.rb @@ -0,0 +1,44 @@ +require 'spec_helper_acceptance' + +describe 'chop function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do + describe 'success' do + it 'should eat the last character' do + pp = <<-EOS + $input = "test" + if size($input) != 4 { + fail("Size of ${input} is not 4.") + } + $output = chop($input) + if size($output) != 3 { + fail("Size of ${input} is not 3.") + } + EOS + + apply_manifest(pp, :catch_failures => true) + end + + it 'should eat the last two characters of \r\n' do + pp = <<-EOS + $input = "test\r\n" + if size($input) != 6 { + fail("Size of ${input} is not 6.") + } + $output = chop($input) + if size($output) != 4 { + fail("Size of ${input} is not 4.") + } + EOS + + apply_manifest(pp, :catch_failures => true) + end + + it 'should not fail on empty strings' do + pp = <<-EOS + $input = "" + $output = chop($input) + EOS + + apply_manifest(pp, :catch_failures => true) + end + end +end |