summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/sortedset/clear_spec.rb
blob: 879aa824d844dbc6655b62be953a15bb10da29e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require_relative '../../../spec_helper'

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

  describe "SortedSet#clear" do
    before :each do
      @set = SortedSet["one", "two", "three", "four"]
    end

    it "removes all elements from self" do
      @set.clear
      @set.should be_empty
    end

    it "returns self" do
      @set.clear.should equal(@set)
    end
  end
end