summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/bignum/even_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/bignum/even_spec.rb')
-rw-r--r--spec/rubyspec/core/bignum/even_spec.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/spec/rubyspec/core/bignum/even_spec.rb b/spec/rubyspec/core/bignum/even_spec.rb
deleted file mode 100644
index a84ea80075..0000000000
--- a/spec/rubyspec/core/bignum/even_spec.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-
-describe "Bignum#even?" do
- it "returns true if self is even and positive" do
- (10000**10).even?.should be_true
- end
-
- it "returns true if self is even and negative" do
- (-10000**10).even?.should be_true
- end
-
- it "returns false if self is odd and positive" do
- (9879**976).even?.should be_false
- end
-
- it "returns false if self is odd and negative" do
- (-9879**976).even?.should be_false
- end
-end