Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / sort_spec.rb
1 require 'spec_helper_acceptance'
2
3 describe 'sort 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 = sort($a)
9       notice(inline_template('sort is <%= @o.inspect %>'))
10     DOC
11     it 'sorts arrays' do
12       apply_manifest(pp1, :catch_failures => true) do |r|
13         expect(r.stdout).to match(%r{sort is \["art", "galleries", "public", "the"\]})
14       end
15     end
16
17     pp2 = <<-DOC
18       $a = "blowzy night-frumps vex'd jack q"
19       $o = sort($a)
20       notice(inline_template('sort is <%= @o.inspect %>'))
21     DOC
22     it 'sorts strings' do
23       apply_manifest(pp2, :catch_failures => true) do |r|
24         expect(r.stdout).to match(%r{sort is "    '-abcdefghijklmnopqrstuvwxyz"})
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