summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/integer/integer_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/integer/integer_spec.rb')
-rw-r--r--spec/rubyspec/core/integer/integer_spec.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/spec/rubyspec/core/integer/integer_spec.rb b/spec/rubyspec/core/integer/integer_spec.rb
deleted file mode 100644
index a6f406cba0..0000000000
--- a/spec/rubyspec/core/integer/integer_spec.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-
-describe "Integer" do
- it "includes Comparable" do
- Integer.include?(Comparable).should == true
- end
-end
-
-describe "Integer#integer?" do
- it "returns true for Integers" do
- 0.integer?.should == true
- -1.integer?.should == true
- bignum_value.integer?.should == true
- end
-end