1 require 'spec_helper_acceptance'
3 describe 'strip function', :if => Puppet::Util::Package.versioncmp(return_puppet_version, '6.0.0') < 0 do
6 $a = [" the "," public "," art","galleries "]
7 # Anagram: Large picture halls, I bet
9 notice(inline_template('strip is <%= @o.inspect %>'))
12 apply_manifest(pp1, :catch_failures => true) do |r|
13 expect(r.stdout).to match(%r{strip is \["the", "public", "art", "galleries"\]})
18 $a = " blowzy night-frumps vex'd jack q "
20 notice(inline_template('strip is <%= @o.inspect %>'))
22 it 'strips strings' do
23 apply_manifest(pp2, :catch_failures => true) do |r|
24 expect(r.stdout).to match(%r{strip is "blowzy night-frumps vex'd jack q"})
29 it 'handles no arguments'
30 it 'handles non strings or arrays'