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