Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / member_spec.rb
index f548bb5..861f6e5 100644 (file)
@@ -17,6 +17,8 @@ describe 'member' do
   it { is_expected.to run.with_params(['one'], 'one').and_return(true) }
   it { is_expected.to run.with_params(['one'], ['one']).and_return(true) }
   it { is_expected.to run.with_params(['one', 'two', 'three', 'four'], ['four', 'two']).and_return(true) }
+  it { is_expected.to run.with_params([1, 2, 3, 4], [4, 2]).and_return(true) }
+  it { is_expected.to run.with_params([1, 'a', 'b', 4], [4, 'b']).and_return(true) }
   it { is_expected.to run.with_params(['ọאּẹ', 'ŧẅồ', 'ţҺŗęē', 'ƒơџŕ'], ['ƒơџŕ', 'ŧẅồ']).and_return(true) }
   it { is_expected.to run.with_params(['one', 'two', 'three', 'four'], ['four', 'five']).and_return(false) }
   it { is_expected.to run.with_params(['ọאּẹ', 'ŧẅồ', 'ţҺŗęē', 'ƒơџŕ'], ['ƒơџŕ', 'ƒί√ə']).and_return(false) }