]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/stdlib/spec/acceptance/capitalize_spec.rb
upgrade to stdlib 4.6.1
[dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / capitalize_spec.rb
1 #! /usr/bin/env ruby -S rspec
2 require 'spec_helper_acceptance'
3
4 describe 'capitalize function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
5   describe 'success' do
6     it 'should capitalize the first letter of a string' do
7       pp = <<-EOS
8       $input = 'this is a string'
9       $output = capitalize($input)
10       notify { $output: }
11       EOS
12
13       apply_manifest(pp, :catch_failures => true) do |r|
14         expect(r.stdout).to match(/Notice: This is a string/)
15       end
16     end
17
18     it 'should capitalize the first letter of an array of strings' do
19       pp = <<-EOS
20       $input = ['this', 'is', 'a', 'string']
21       $output = capitalize($input)
22       notify { $output: }
23       EOS
24
25       apply_manifest(pp, :catch_failures => true) do |r|
26         expect(r.stdout).to match(/Notice: This/)
27         expect(r.stdout).to match(/Notice: Is/)
28         expect(r.stdout).to match(/Notice: A/)
29         expect(r.stdout).to match(/Notice: String/)
30       end
31     end
32   end
33 end