Sha256: c74ad926995264cd38d5e17fc2d8fa1a7b18f4b5557a09066c4c1326ad148cd8
Contents?: true
Size: 1.5 KB
Versions: 83
Compression:
Stored size: 1.5 KB
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' describe "Fixnum#|" do it "returns self bitwise OR other" do (1 | 0).should == 1 (5 | 4).should == 5 (5 | 6).should == 7 (248 | 4096).should == 4344 (0xffff | bignum_value + 0xf0f0).should == 0x8000_0000_0000_ffff end it "should be able to AND a bignum with a fixnum" do (-1 | 2**64).should == -1 end ruby_version_is "" ... "1.9" do ruby_bug "#", "1.8.6" do it "doesn't raise an error if passed a Float out of Fixnum range" do lambda { 1 | bignum_value(10000).to_f }.should_not raise_error() lambda { 1 | -bignum_value(10000).to_f }.should_not raise_error() end end it "converts a Float to an Integer" do (5 | 4.3).should == 5 end end it "tries to convert the int like argument to an Integer using to_int" do (obj = mock('4')).should_receive(:to_int).and_return(4) (3 | obj).should == 7 end it "raises a TypeError when the given argument can't be converted to Integer" do obj = mock('asdf') lambda { 3 | obj }.should raise_error(TypeError) obj.should_receive(:to_int).and_return("asdf") lambda { 3 | obj }.should raise_error(TypeError) end ruby_bug "#", "1.8.6" do # Fixed at MRI 1.8.7 it "coerces arguments correctly even if it is a Bignum" do (obj = mock('large value')).should_receive(:to_int).and_return(8000_0000_0000_0000_0000) (3 | obj).should == 80000000000000000003 end end end
Version data entries
83 entries across 83 versions & 1 rubygems