summaryrefslogtreecommitdiff
path: root/spec/ruby/core/complex/negative_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/complex/negative_spec.rb')
-rw-r--r--spec/ruby/core/complex/negative_spec.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/ruby/core/complex/negative_spec.rb b/spec/ruby/core/complex/negative_spec.rb
new file mode 100644
index 0000000000..5b51933106
--- /dev/null
+++ b/spec/ruby/core/complex/negative_spec.rb
@@ -0,0 +1,11 @@
+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