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