source: other-projects/hathitrust/vagrant-hadoop-cluster/trunk/modules/stdlib/spec/acceptance/uriescape_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: 704 bytes
Line 
1#! /usr/bin/env ruby -S rspec
2require 'spec_helper_acceptance'
3
4describe 'uriescape function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
5 describe 'success' do
6 it 'uriescape strings' do
7 pp = <<-EOS
8 $a = ":/?#[]@!$&'()*+,;= \\\"{}"
9 $o = uriescape($a)
10 notice(inline_template('uriescape is <%= @o.inspect %>'))
11 EOS
12
13 apply_manifest(pp, :catch_failures => true) do |r|
14 expect(r.stdout).to match(/uriescape is ":\/\?%23\[\]@!\$&'\(\)\*\+,;=%20%22%7B%7D"/)
15 end
16 end
17 it 'does nothing if a string is already safe'
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.