blob: 1d606f0b1287c8ecc580ccf0532be36e85bae0b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'spec_helper_acceptance'
describe 'swapcase function' do
describe 'success' do
pp = <<-DOC
$o = swapcase('aBcD')
notice(inline_template('swapcase is <%= @o.inspect %>'))
DOC
it 'works with strings' do
apply_manifest(pp, :catch_failures => true) do |r|
expect(r.stdout).to match(%r{swapcase is "AbCd"})
end
end
it 'works with arrays'
end
describe 'failure' do
it 'handles no arguments'
it 'handles non arrays or strings'
end
end
|