summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/complex/negative_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/complex/negative_spec.rb')
-rw-r--r--spec/rubyspec/core/complex/negative_spec.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/rubyspec/core/complex/negative_spec.rb b/spec/rubyspec/core/complex/negative_spec.rb
deleted file mode 100644
index 5b51933106..0000000000
--- a/spec/rubyspec/core/complex/negative_spec.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-describe "Complex#negative?" do
- it "is undefined" do
- c = Complex(1)
-
- c.methods.should_not include(:negative?)
-
- lambda {
- c.negative?
- }.should raise_error(NoMethodError)
- end
-end