summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/clear_spec.rb
blob: 2b1c9c5b5ac04848b318fec28d4071b63ed509ee (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 "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