Sha256: 4ec423b0a416174b483a6be6194e0c62d6ab2fbaf5982955f740026a07338823
Contents?: true
Size: 1.78 KB
Versions: 64
Compression:
Stored size: 1.78 KB
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' describe "Bignum#|" do before(:each) do @bignum = bignum_value(11) end it "returns self bitwise OR other" do (@bignum | 2).should == 9223372036854775819 (@bignum | 9).should == 9223372036854775819 (@bignum | bignum_value).should == 9223372036854775819 end it "returns self bitwise OR other when one operand is negative" do (@bignum | -0x40000000000000000).should == -64563604257983430645 (@bignum | -@bignum).should == -1 (@bignum | -0x8000000000000000).should == -9223372036854775797 end it "returns self bitwise OR other when both operands are negative" do (-@bignum | -0x4000000000000005).should == -1 (-@bignum | -@bignum).should == -9223372036854775819 (-@bignum | -0x4000000000000000).should == -11 end ruby_version_is ""..."1.9" do it "coerces Float arguments to Integers" do (bignum_value | bignum_value(0xffff).to_f).should == 9223372036854841344 (@bignum | 9.9).should == 9223372036854775819 end end ruby_version_is "1.9" do it "raises a TypeError when passed a Float" do lambda { bignum_value | bignum_value(0xffff).to_f }.should raise_error(TypeError) lambda { @bignum | 9.9 }.should raise_error(TypeError) end end it "tries to convert the given argument to an Integer using to_int" do (obj = mock('2')).should_receive(:to_int).and_return(2) (@bignum | obj).should == 9223372036854775819 end it "raises a TypeError when the given argument can't be converted to Integer" do obj = mock('asdf') lambda { @bignum | obj }.should raise_error(TypeError) obj.should_receive(:to_int).and_return("asdf") lambda { @bignum | obj }.should raise_error(TypeError) end end
Version data entries
64 entries across 64 versions & 1 rubygems