mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
19 lines
457 B
Ruby
19 lines
457 B
Ruby
|
require File.expand_path('../../../spec_helper', __FILE__)
|
||
|
|
||
|
describe "Integer#odd?" do
|
||
|
it "returns true when self is an odd number" do
|
||
|
(-2).odd?.should be_false
|
||
|
(-1).odd?.should be_true
|
||
|
|
||
|
0.odd?.should be_false
|
||
|
1.odd?.should be_true
|
||
|
2.odd?.should be_false
|
||
|
|
||
|
bignum_value(0).odd?.should be_false
|
||
|
bignum_value(1).odd?.should be_true
|
||
|
|
||
|
(-bignum_value(0)).odd?.should be_false
|
||
|
(-bignum_value(1)).odd?.should be_true
|
||
|
end
|
||
|
end
|