Update stdlib
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / max_spec.rb
1 #! /usr/bin/env ruby -S rspec
2 require 'spec_helper_acceptance'
3
4 describe 'max function' do
5   describe 'success' do
6     it 'maxs arrays' do
7       pp = <<-EOS
8       $o = max("the","public","art","galleries")
9       notice(inline_template('max is <%= @o.inspect %>'))
10       EOS
11
12       apply_manifest(pp, :catch_failures => true) do |r|
13         expect(r.stdout).to match(/max is "the"/)
14       end
15     end
16   end
17   describe 'failure' do
18     it 'handles no arguments'
19   end
20 end