summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/set/delete_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/library/set/delete_spec.rb')
-rw-r--r--spec/rubyspec/library/set/delete_spec.rb37
1 files changed, 0 insertions, 37 deletions
diff --git a/spec/rubyspec/library/set/delete_spec.rb b/spec/rubyspec/library/set/delete_spec.rb
deleted file mode 100644
index 4f0326e37a..0000000000
--- a/spec/rubyspec/library/set/delete_spec.rb
+++ /dev/null
@@ -1,37 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-require 'set'
-
-describe "Set#delete" do
- before :each do
- @set = Set["a", "b", "c"]
- end
-
- it "deletes the passed Object from self" do
- @set.delete("a")
- @set.should_not include("a")
- end
-
- it "returns self" do
- @set.delete("a").should equal(@set)
- @set.delete("x").should equal(@set)
- end
-end
-
-describe "Set#delete?" do
- before :each do
- @set = Set["a", "b", "c"]
- end
-
- it "deletes the passed Object from self" do
- @set.delete?("a")
- @set.should_not include("a")
- end
-
- it "returns self when the passed Object is in self" do
- @set.delete?("a").should equal(@set)
- end
-
- it "returns nil when the passed Object is not in self" do
- @set.delete?("x").should be_nil
- end
-end