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