summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/rational/integer_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/rational/integer_spec.rb')
-rw-r--r--spec/rubyspec/core/rational/integer_spec.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/rubyspec/core/rational/integer_spec.rb b/spec/rubyspec/core/rational/integer_spec.rb
new file mode 100644
index 0000000000..451e42ee14
--- /dev/null
+++ b/spec/rubyspec/core/rational/integer_spec.rb
@@ -0,0 +1,9 @@
+describe "Rational#integer?" do
+ it "returns false for a rational with a numerator and no denominator" do
+ Rational(20).integer?.should be_false
+ end
+
+ it "returns false for a rational with a numerator and a denominator" do
+ Rational(20,3).integer?.should be_false
+ end
+end