blob: 94828719a66782abbc5ec66bbb64e694c61dd5da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'spec_helper_acceptance'
describe 'max function' do
describe 'success' do
pp = <<-DOC
$o = max("the","public","art","galleries")
notice(inline_template('max is <%= @o.inspect %>'))
DOC
it 'maxs arrays' do
apply_manifest(pp, :catch_failures => true) do |r|
expect(r.stdout).to match(%r{max is "the"})
end
end
end
describe 'failure' do
it 'handles no arguments'
end
end
|