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

  it "returns a new SortedSet containting self's elements excluding the elements in the passed Enumerable" do
    @set.send(@method, SortedSet["a", "b"]).should == SortedSet["c"]
    @set.send(@method, ["b", "c"]).should == SortedSet["a"]
  end

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