summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/sortedset/shared/intersection.rb
blob: 045716ad05cc4730bf9c8a2dc402ddd329a74234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
describe :sorted_set_intersection, shared: true do
  before :each do
    @set = SortedSet["a", "b", "c"]
  end

  it "returns a new SortedSet containing only elements shared by self and the passed Enumerable" do
    @set.send(@method, SortedSet["b", "c", "d", "e"]).should == SortedSet["b", "c"]
    @set.send(@method, ["b", "c", "d"]).should == SortedSet["b", "c"]
  end

  it "raises an ArgumentError when passed a non-Enumerable" do
    -> { @set.send(@method, 1) }.should raise_error(ArgumentError)
    -> { @set.send(@method, Object.new) }.should raise_error(ArgumentError)
  end
end