Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / member_spec.rb
1 require 'spec_helper'
2
3 describe 'member' 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 { is_expected.to run.with_params([]).and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) }
7   it {
8     pending('Current implementation ignores parameters after the first.')
9     is_expected.to run.with_params([], [], []).and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i)
10   }
11   it { is_expected.to run.with_params([], '').and_return(false) }
12   it { is_expected.to run.with_params([], ['']).and_return(false) }
13   it { is_expected.to run.with_params([''], '').and_return(true) }
14   it { is_expected.to run.with_params([''], ['']).and_return(true) }
15   it { is_expected.to run.with_params([], 'one').and_return(false) }
16   it { is_expected.to run.with_params([], ['one']).and_return(false) }
17   it { is_expected.to run.with_params(['one'], 'one').and_return(true) }
18   it { is_expected.to run.with_params(['one'], ['one']).and_return(true) }
19   it { is_expected.to run.with_params(['one', 'two', 'three', 'four'], ['four', 'two']).and_return(true) }
20   it { is_expected.to run.with_params([1, 2, 3, 4], [4, 2]).and_return(true) }
21   it { is_expected.to run.with_params([1, 'a', 'b', 4], [4, 'b']).and_return(true) }
22   it { is_expected.to run.with_params(['ọאּẹ', 'ŧẅồ', 'ţҺŗęē', 'ƒơџŕ'], ['ƒơџŕ', 'ŧẅồ']).and_return(true) }
23   it { is_expected.to run.with_params(['one', 'two', 'three', 'four'], ['four', 'five']).and_return(false) }
24   it { is_expected.to run.with_params(['ọאּẹ', 'ŧẅồ', 'ţҺŗęē', 'ƒơџŕ'], ['ƒơџŕ', 'ƒί√ə']).and_return(false) }
25 end