Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / suffix_spec.rb
1 require 'spec_helper'
2
3 describe 'suffix' 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}) }
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([]) }
13   it { is_expected.to run.with_params(['one', 2]).and_return(['one', '2']) }
14   it { is_expected.to run.with_params([], '').and_return([]) }
15   it { is_expected.to run.with_params([''], '').and_return(['']) }
16   it { is_expected.to run.with_params(['one'], 'post').and_return(['onepost']) }
17   it { is_expected.to run.with_params(['one', 'two', 'three'], 'post').and_return(['onepost', 'twopost', 'threepost']) }
18   it { is_expected.to run.with_params(['ỗńέ', 'ťשׂǿ', 'ŧҺř℮ə'], 'рổŝţ').and_return(['ỗńέрổŝţ', 'ťשׂǿрổŝţ', 'ŧҺř℮əрổŝţ']) }
19
20   it { is_expected.to run.with_params({}).and_return({}) }
21   it { is_expected.to run.with_params('key1' => 'value1', 2 => 3).and_return('key1' => 'value1', '2' => 3) }
22   it { is_expected.to run.with_params({}, '').and_return({}) }
23   it { is_expected.to run.with_params({ 'key' => 'value' }, '').and_return('key' => 'value') }
24   it { is_expected.to run.with_params({ 'key' => 'value' }, 'post').and_return('keypost' => 'value') }
25   it {
26     is_expected.to run \
27       .with_params({ 'key1' => 'value1', 'key2' => 'value2', 'key3' => 'value3' }, 'post') \
28       .and_return('key1post' => 'value1', 'key2post' => 'value2', 'key3post' => 'value3')
29   }
30 end