Mercurial > repos > other > Puppet
annotate modules/stdlib/spec/functions/upcase_spec.rb @ 275:d9352a684e62
Mass update of modules to remove deprecation warnings
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 26 Jan 2020 11:36:07 +0000 |
parents | c42fb28cff86 |
children |
rev | line source |
---|---|
37 | 1 require 'spec_helper' |
2 | |
275
d9352a684e62
Mass update of modules to remove deprecation warnings
IBBoard <dev@ibboard.co.uk>
parents:
272
diff
changeset
|
3 describe 'upcase', :if => Puppet::Util::Package.versioncmp(Puppet.version, '6.0.0') < 0 do |
272 | 4 describe 'signature validation' do |
5 it { is_expected.not_to eq(nil) } | |
6 it { is_expected.to run.with_params.and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) } | |
7 it { is_expected.to run.with_params('', '').and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) } | |
8 it { is_expected.to run.with_params(1).and_raise_error(Puppet::ParseError, %r{Requires an array, hash or object that responds to upcase}) } | |
9 it { is_expected.to run.with_params([1]).and_raise_error(Puppet::ParseError, %r{Requires an array, hash or object that responds to upcase}) } | |
37 | 10 end |
11 | |
272 | 12 describe 'normal string handling' do |
13 it { is_expected.to run.with_params('abc').and_return('ABC') } | |
14 it { is_expected.to run.with_params('Abc').and_return('ABC') } | |
15 it { is_expected.to run.with_params('ABC').and_return('ABC') } | |
37 | 16 end |
17 | |
272 | 18 describe 'handling classes derived from String' do |
19 it { is_expected.to run.with_params(AlsoString.new('ABC')).and_return('ABC') } | |
20 end | |
37 | 21 |
272 | 22 describe 'strings in arrays handling' do |
23 it { is_expected.to run.with_params([]).and_return([]) } | |
275
d9352a684e62
Mass update of modules to remove deprecation warnings
IBBoard <dev@ibboard.co.uk>
parents:
272
diff
changeset
|
24 it { is_expected.to run.with_params(['One', 'twO']).and_return(['ONE', 'TWO']) } |
37 | 25 end |
26 end |