summaryrefslogtreecommitdiff
path: root/spec/ruby/core/set/intersection_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/set/intersection_spec.rb')
-rw-r--r--spec/ruby/core/set/intersection_spec.rb19
1 files changed, 16 insertions, 3 deletions
diff --git a/spec/ruby/core/set/intersection_spec.rb b/spec/ruby/core/set/intersection_spec.rb
index 136b886775..c14e1f62ad 100644
--- a/spec/ruby/core/set/intersection_spec.rb
+++ b/spec/ruby/core/set/intersection_spec.rb
@@ -1,10 +1,23 @@
require_relative '../../spec_helper'
-require_relative 'shared/intersection'
describe "Set#intersection" do
- it_behaves_like :set_intersection, :intersection
+ it "is an alias of Set#&" do
+ Set.instance_method(:intersection).should == Set.instance_method(:&)
+ end
end
describe "Set#&" do
- it_behaves_like :set_intersection, :&
+ before :each do
+ @set = Set[:a, :b, :c]
+ end
+
+ it "returns a new Set containing only elements shared by self and the passed Enumerable" do
+ (@set & Set[:b, :c, :d, :e]).should == Set[:b, :c]
+ (@set & [:b, :c, :d]).should == Set[:b, :c]
+ end
+
+ it "raises an ArgumentError when passed a non-Enumerable" do
+ -> { @set & 1 }.should.raise(ArgumentError)
+ -> { @set & Object.new }.should.raise(ArgumentError)
+ end
end