aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/library/set/clear_spec.rb
blob: b35ce4fec091151c594066ae823e0e21c14d28dd (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 "Set#clear" do
  before :each do
    @set = Set["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