summaryrefslogtreecommitdiff
path: root/code/environments/production/modules/stdlib/spec/functions/intersection_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'code/environments/production/modules/stdlib/spec/functions/intersection_spec.rb')
-rw-r--r--code/environments/production/modules/stdlib/spec/functions/intersection_spec.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/code/environments/production/modules/stdlib/spec/functions/intersection_spec.rb b/code/environments/production/modules/stdlib/spec/functions/intersection_spec.rb
new file mode 100644
index 0000000..4589928
--- /dev/null
+++ b/code/environments/production/modules/stdlib/spec/functions/intersection_spec.rb
@@ -0,0 +1,22 @@
+require 'spec_helper'
+
+describe 'intersection' do
+ it { is_expected.not_to eq(nil) }
+ it { is_expected.to run.with_params.and_raise_error(Puppet::ParseError) }
+ it { is_expected.to run.with_params('one').and_raise_error(Puppet::ParseError) }
+ it { is_expected.to run.with_params('one', 'two').and_raise_error(Puppet::ParseError) }
+ it { is_expected.to run.with_params('one', 'two', 'three').and_raise_error(Puppet::ParseError) }
+ it { is_expected.to run.with_params('one', []).and_raise_error(Puppet::ParseError) }
+ it { is_expected.to run.with_params([], 'two').and_raise_error(Puppet::ParseError) }
+ it { is_expected.to run.with_params({}, {}).and_raise_error(Puppet::ParseError) }
+ it { is_expected.to run.with_params([], []).and_return([]) }
+ it { is_expected.to run.with_params([], ['one']).and_return([]) }
+ it { is_expected.to run.with_params(['one'], []).and_return([]) }
+ it { is_expected.to run.with_params(['one'], ['one']).and_return(['one']) }
+ it { is_expected.to run.with_params(%w[one two three], %w[two three]).and_return(%w[two three]) }
+ it { is_expected.to run.with_params(%w[ōŋể ŧשợ ţђŕẽё], %w[ŧשợ ţђŕẽё]).and_return(%w[ŧשợ ţђŕẽё]) }
+ it { is_expected.to run.with_params(%w[one two two three], %w[two three]).and_return(%w[two three]) }
+ it { is_expected.to run.with_params(%w[one two three], %w[two two three]).and_return(%w[two three]) }
+ it { is_expected.to run.with_params(%w[one two three], %w[two three four]).and_return(%w[two three]) }
+ it 'does not confuse types' do is_expected.to run.with_params(%w[1 2 3], [1, 2]).and_return([]) end
+end