1 #! /usr/bin/env ruby -S rspec
2 require 'spec_helper_acceptance'
4 describe 'shuffle function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
6 it 'shuffles arrays' do
8 $a = ["1", "2", "3", "4", "5", "6", "7", "8", "the","public","art","galleries"]
9 # Anagram: Large picture halls, I bet
11 notice(inline_template('shuffle is <%= @o.inspect %>'))
14 apply_manifest(pp, :catch_failures => true) do |r|
15 expect(r.stdout).to_not match(/shuffle is \["1", "2", "3", "4", "5", "6", "7", "8", "the", "public", "art", "galleries"\]/)
18 it 'shuffles strings' do
20 $a = "blowzy night-frumps vex'd jack q"
22 notice(inline_template('shuffle is <%= @o.inspect %>'))
25 apply_manifest(pp, :catch_failures => true) do |r|
26 expect(r.stdout).to_not match(/shuffle is "blowzy night-frumps vex'd jack q"/)
31 it 'handles no arguments'
32 it 'handles non strings or arrays'