Mercurial > repos > other > Puppet
annotate modules/stdlib/spec/functions/prefix_spec.rb @ 320:99e3ca448d55
Fix Remi PHP on CentOS 8
It uses the new "modules" approach, so we need to use a new
package provider
They also use different signing keys
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 01 Mar 2020 10:58:00 +0000 |
parents | d9352a684e62 |
children |
rev | line source |
---|---|
37 | 1 require 'spec_helper' |
2 | |
272 | 3 describe 'prefix' do |
4 it { is_expected.not_to eq(nil) } | |
5 it { is_expected.to run.with_params.and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) } | |
6 it { | |
7 pending('Current implementation ignores parameters after the second.') | |
8 is_expected.to run.with_params([], 'a', '').and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) | |
9 } | |
10 it { is_expected.to run.with_params('', '').and_raise_error(Puppet::ParseError, %r{expected first argument to be an Array or a Hash}) } | |
11 it { is_expected.to run.with_params([], 2).and_raise_error(Puppet::ParseError, %r{expected second argument to be a String}) } | |
12 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
|
13 it { is_expected.to run.with_params(['one', 2]).and_return(['one', '2']) } |
d9352a684e62
Mass update of modules to remove deprecation warnings
IBBoard <dev@ibboard.co.uk>
parents:
272
diff
changeset
|
14 it { is_expected.to run.with_params(['ớņệ', 2]).and_return(['ớņệ', '2']) } |
272 | 15 it { is_expected.to run.with_params([], '').and_return([]) } |
16 it { is_expected.to run.with_params([''], '').and_return(['']) } | |
17 it { is_expected.to run.with_params(['one'], 'pre').and_return(['preone']) } | |
275
d9352a684e62
Mass update of modules to remove deprecation warnings
IBBoard <dev@ibboard.co.uk>
parents:
272
diff
changeset
|
18 it { is_expected.to run.with_params(['one', 'two', 'three'], 'pre').and_return(['preone', 'pretwo', 'prethree']) } |
272 | 19 it { is_expected.to run.with_params({}).and_return({}) } |
20 it { is_expected.to run.with_params('key1' => 'value1', 2 => 3).and_return('key1' => 'value1', '2' => 3) } | |
21 it { is_expected.to run.with_params({}, '').and_return({}) } | |
22 it { is_expected.to run.with_params({ 'key' => 'value' }, '').and_return('key' => 'value') } | |
23 it { is_expected.to run.with_params({ 'key' => 'value' }, 'pre').and_return('prekey' => 'value') } | |
24 it { | |
25 is_expected.to run \ | |
26 .with_params({ 'key1' => 'value1', 'key2' => 'value2', 'key3' => 'value3' }, 'pre') \ | |
27 .and_return('prekey1' => 'value1', 'prekey2' => 'value2', 'prekey3' => 'value3') | |
28 } | |
37 | 29 end |