source: other-projects/hathitrust/vagrant-hadoop-cluster/trunk/modules/stdlib/spec/acceptance/reverse_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: 671 bytes
Line 
1#! /usr/bin/env ruby -S rspec
2require 'spec_helper_acceptance'
3
4describe 'reverse function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
5 describe 'success' do
6 it 'reverses strings' do
7 pp = <<-EOS
8 $a = "the public art galleries"
9 # Anagram: Large picture halls, I bet
10 $o = reverse($a)
11 notice(inline_template('reverse is <%= @o.inspect %>'))
12 EOS
13
14 apply_manifest(pp, :catch_failures => true) do |r|
15 expect(r.stdout).to match(/reverse is "seirellag tra cilbup eht"/)
16 end
17 end
18 end
19 describe 'failure' do
20 it 'handles no arguments'
21 it 'handles non strings or arrays'
22 end
23end
Note: See TracBrowser for help on using the repository browser.