aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/set/sortedset/clear_spec.rb
blob: 3a3277dd8ac1fbfece4f5fb5fdb9ac1237fecd1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require File.expand_path('../../../../spec_helper', __FILE__)
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