summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/set/shared/length.rb
blob: a8fcee9f397dda072a349ea80b5ab044fc93c7f3 (plain)
1
2
3
4
5
6
describe :set_length, shared: true do
  it "returns the number of elements in the set" do
    set = Set[:a, :b, :c]
    set.send(@method).should == 3
  end
end