summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/sortedset/clear_spec.rb
blob: 11b5db2095777fe57990c29a96f106c4cf32c0d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require_relative '../../../spec_helper'
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