mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
7 lines
160 B
Ruby
7 lines
160 B
Ruby
|
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
|