Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / abs_spec.rb
1 require 'spec_helper_acceptance'
2
3 describe 'abs function', :if => Puppet::Util::Package.versioncmp(return_puppet_version, '6.0.0') < 0 do
4   describe 'success' do
5     pp1 = <<-DOC
6       $input  = '-34.56'
7       $output = abs($input)
8       notify { "$output": }
9     DOC
10     it 'accepts a string' do
11       apply_manifest(pp1, :catch_failures => true) do |r|
12         expect(r.stdout).to match(%r{Notice: 34.56})
13       end
14     end
15
16     pp2 = <<-DOC
17       $input  = -35.46
18       $output = abs($input)
19       notify { "$output": }
20     DOC
21     it 'accepts a float' do
22       apply_manifest(pp2, :catch_failures => true) do |r|
23         expect(r.stdout).to match(%r{Notice: 35.46})
24       end
25     end
26   end
27 end