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