mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
11 lines
253 B
Ruby
11 lines
253 B
Ruby
|
require File.expand_path('../../../spec_helper', __FILE__)
|
||
|
require 'set'
|
||
|
|
||
|
describe "Set#empty?" do
|
||
|
it "returns true if self is empty" do
|
||
|
Set[].empty?.should be_true
|
||
|
Set[1].empty?.should be_false
|
||
|
Set[1,2,3].empty?.should be_false
|
||
|
end
|
||
|
end
|