Sha256: a4dfd9e3aca8d66d5a4c3e2bdf6d5dd7b6569652b58e0ebe66674b2e7947a511
Contents?: true
Size: 541 Bytes
Versions: 52
Compression:
Stored size: 541 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) ruby_version_is "1.8.7" do describe "Bignum#odd?" do it "returns true if self is odd and positive" do (987279**19).odd?.should be_true end it "returns true if self is odd and negative" do (-9873389**97).odd?.should be_true end it "returns false if self is even and positive" do (10000000**10).odd?.should be_false end it "returns false if self is even and negative" do (-1000000**100).odd?.should be_false end end end
Version data entries
52 entries across 52 versions & 2 rubygems