Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / strip_spec.rb
1 require 'spec_helper_acceptance'
2
3 describe 'strip function', :if => Puppet::Util::Package.versioncmp(return_puppet_version, '6.0.0') < 0 do
4   describe 'success' do
5     pp1 = <<-DOC
6       $a = ["  the   ","   public   ","   art","galleries   "]
7       # Anagram: Large picture halls, I bet
8       $o = strip($a)
9       notice(inline_template('strip is <%= @o.inspect %>'))
10     DOC
11     it 'strips arrays' do
12       apply_manifest(pp1, :catch_failures => true) do |r|
13         expect(r.stdout).to match(%r{strip is \["the", "public", "art", "galleries"\]})
14       end
15     end
16
17     pp2 = <<-DOC
18       $a = "   blowzy night-frumps vex'd jack q   "
19       $o = strip($a)
20       notice(inline_template('strip is <%= @o.inspect %>'))
21     DOC
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"})
25       end
26     end
27   end
28   describe 'failure' do
29     it 'handles no arguments'
30     it 'handles non strings or arrays'
31   end
32 end