summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/sortedset/superset_spec.rb
blob: a1bbacb9668e061a094bec90baf6fe21eb26172f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
require_relative '../../../spec_helper'

ruby_version_is ""..."3.0" do
  require 'set'

  describe "SortedSet#superset?" do
    before :each do
      @set = SortedSet[1, 2, 3, 4]
    end

    it "returns true if passed a SortedSet that equals self or self is a proper superset of" do
      @set.superset?(@set).should be_true
      SortedSet[].superset?(SortedSet[]).should be_true

      @set.superset?(SortedSet[]).should be_true
      SortedSet[1, 2, 3].superset?(SortedSet[]).should be_true
      SortedSet["a", "b", "c"].superset?(SortedSet[]).should be_true

      @set.superset?(SortedSet[1, 2, 3]).should be_true
      @set.superset?(SortedSet[1, 3]).should be_true
      @set.superset?(SortedSet[1, 2]).should be_true
      @set.superset?(SortedSet[1]).should be_true

      @set.superset?(SortedSet[5]).should be_false
      @set.superset?(SortedSet[1, 5]).should be_false
      @set.superset?(SortedSet["test"]).should be_false
    end

    it "raises an ArgumentError when passed a non-SortedSet" do
      -> { SortedSet[].superset?([]) }.should raise_error(ArgumentError)
      -> { SortedSet[].superset?(1) }.should raise_error(ArgumentError)
      -> { SortedSet[].superset?("test") }.should raise_error(ArgumentError)
      -> { SortedSet[].superset?(Object.new) }.should raise_error(ArgumentError)
    end
  end
end