Mercurial > repos > other > Puppet
comparison modules/stdlib/spec/acceptance/strip_spec.rb @ 37:addb0ea390a1 puppet-3.6
Update Puppet "stdlib" module
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 14 Mar 2015 20:09:45 +0000 |
parents | |
children | c42fb28cff86 |
comparison
equal
deleted
inserted
replaced
36:37675581a273 | 37:addb0ea390a1 |
---|---|
1 #! /usr/bin/env ruby -S rspec | |
2 require 'spec_helper_acceptance' | |
3 | |
4 describe 'strip function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do | |
5 describe 'success' do | |
6 it 'strips arrays' do | |
7 pp = <<-EOS | |
8 $a = [" the "," public "," art","galleries "] | |
9 # Anagram: Large picture halls, I bet | |
10 $o = strip($a) | |
11 notice(inline_template('strip is <%= @o.inspect %>')) | |
12 EOS | |
13 | |
14 apply_manifest(pp, :catch_failures => true) do |r| | |
15 expect(r.stdout).to match(/strip is \["the", "public", "art", "galleries"\]/) | |
16 end | |
17 end | |
18 it 'strips strings' do | |
19 pp = <<-EOS | |
20 $a = " blowzy night-frumps vex'd jack q " | |
21 $o = strip($a) | |
22 notice(inline_template('strip is <%= @o.inspect %>')) | |
23 EOS | |
24 | |
25 apply_manifest(pp, :catch_failures => true) do |r| | |
26 expect(r.stdout).to match(/strip is "blowzy night-frumps vex'd jack q"/) | |
27 end | |
28 end | |
29 end | |
30 describe 'failure' do | |
31 it 'handles no arguments' | |
32 it 'handles non strings or arrays' | |
33 end | |
34 end |