comparison modules/stdlib/spec/acceptance/abs_spec.rb @ 37:addb0ea390a1 puppet-3.6

Update Puppet "stdlib" module
author IBBoard <dev@ibboard.co.uk>
date Sat, 14 Mar 2015 20:09:45 +0000
parents
children c42fb28cff86
comparison
equal deleted inserted replaced
36:37675581a273 37:addb0ea390a1
1 #! /usr/bin/env ruby -S rspec
2 require 'spec_helper_acceptance'
3
4 describe 'abs function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
5 describe 'success' do
6 it 'should accept a string' do
7 pp = <<-EOS
8 $input = '-34.56'
9 $output = abs($input)
10 notify { "$output": }
11 EOS
12
13 apply_manifest(pp, :catch_failures => true) do |r|
14 expect(r.stdout).to match(/Notice: 34.56/)
15 end
16 end
17
18 it 'should accept a float' do
19 pp = <<-EOS
20 $input = -34.56
21 $output = abs($input)
22 notify { "$output": }
23 EOS
24
25 apply_manifest(pp, :catch_failures => true) do |r|
26 expect(r.stdout).to match(/Notice: 34.56/)
27 end
28 end
29 end
30 end