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

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

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

  • Property svn:executable set to *
File size: 606 bytes
Line 
1#! /usr/bin/env ruby -S rspec
2require 'spec_helper_acceptance'
3
4describe 'swapcase function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
5 describe 'success' do
6 it 'works with strings' do
7 pp = <<-EOS
8 $o = swapcase('aBcD')
9 notice(inline_template('swapcase is <%= @o.inspect %>'))
10 EOS
11
12 apply_manifest(pp, :catch_failures => true) do |r|
13 expect(r.stdout).to match(/swapcase is "AbCd"/)
14 end
15 end
16 it 'works with arrays'
17 end
18 describe 'failure' do
19 it 'handles no arguments'
20 it 'handles non arrays or strings'
21 end
22end
Note: See TracBrowser for help on using the repository browser.