summaryrefslogtreecommitdiff
path: root/spec/ruby/library/set/empty_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/set/empty_spec.rb')
-rw-r--r--spec/ruby/library/set/empty_spec.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/spec/ruby/library/set/empty_spec.rb b/spec/ruby/library/set/empty_spec.rb
deleted file mode 100644
index 1789a664c7..0000000000
--- a/spec/ruby/library/set/empty_spec.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-require_relative '../../spec_helper'
-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