source: other-projects/hathitrust/vagrant-hadoop-cluster/trunk/modules/stdlib/spec/acceptance/shuffle_spec.rb@ 30903

Last change on this file since 30903 was 30903, checked in by davidb, 8 years ago

Vagrant provisioning files for a 4-node Hadoop cluster. See README.txt for more details

  • Property svn:executable set to *
File size: 1.1 KB
Line 
1#! /usr/bin/env ruby -S rspec
2require 'spec_helper_acceptance'
3
4describe 'shuffle function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
5 describe 'success' do
6 it 'shuffles arrays' do
7 pp = <<-EOS
8 $a = ["1", "2", "3", "4", "5", "6", "7", "8", "the","public","art","galleries"]
9 # Anagram: Large picture halls, I bet
10 $o = shuffle($a)
11 notice(inline_template('shuffle is <%= @o.inspect %>'))
12 EOS
13
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"\]/)
16 end
17 end
18 it 'shuffles strings' do
19 pp = <<-EOS
20 $a = "blowzy night-frumps vex'd jack q"
21 $o = shuffle($a)
22 notice(inline_template('shuffle is <%= @o.inspect %>'))
23 EOS
24
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"/)
27 end
28 end
29 end
30 describe 'failure' do
31 it 'handles no arguments'
32 it 'handles non strings or arrays'
33 end
34end
Note: See TracBrowser for help on using the repository browser.