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