diff options
author | Ashley Penney <ashley.penney@puppetlabs.com> | 2014-05-01 18:56:29 -0400 |
---|---|---|
committer | Ashley Penney <ashley.penney@puppetlabs.com> | 2014-05-01 18:56:29 -0400 |
commit | 143a0078b01fdde118b19e89486b96644f1d5d7e (patch) | |
tree | 6bc2e63858bbbd2ce77c0d32bc35013c8b157888 /spec/acceptance/strip_spec.rb | |
parent | f8bfe46bbfa4a4737cef9a20cfe1bed04aee4bdc (diff) | |
parent | 80590a9bfe2a8c0d288125d17cfb9f01c8563a7a (diff) | |
download | puppet-stdlib-143a0078b01fdde118b19e89486b96644f1d5d7e.tar.gz puppet-stdlib-143a0078b01fdde118b19e89486b96644f1d5d7e.tar.bz2 |
Merge pull request #244 from hunner/add_tests
Add more specs
Diffstat (limited to 'spec/acceptance/strip_spec.rb')
-rw-r--r-- | spec/acceptance/strip_spec.rb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/spec/acceptance/strip_spec.rb b/spec/acceptance/strip_spec.rb new file mode 100644 index 0000000..fe0c7e9 --- /dev/null +++ b/spec/acceptance/strip_spec.rb @@ -0,0 +1,33 @@ +require 'spec_helper_acceptance' + +describe 'strip function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do + describe 'success' do + it 'strips arrays' do + pp = <<-EOS + $a = [" the "," public "," art","galleries "] + # Anagram: Large picture halls, I bet + $o = strip($a) + notice(inline_template('strip is <%= @o.inspect %>')) + EOS + + apply_manifest(pp, :catch_failures => true) do |r| + expect(r.stdout).to match(/strip is \["the", "public", "art", "galleries"\]/) + end + end + it 'strips strings' do + pp = <<-EOS + $a = " blowzy night-frumps vex'd jack q " + $o = strip($a) + notice(inline_template('strip is <%= @o.inspect %>')) + EOS + + apply_manifest(pp, :catch_failures => true) do |r| + expect(r.stdout).to match(/strip is "blowzy night-frumps vex'd jack q"/) + end + end + end + describe 'failure' do + it 'handles no arguments' + it 'handles non strings or arrays' + end +end |