Sha256: 99a2a0d862eb56c42d14f37b27feef3fada13a83d82513c3beed36051c87abf4
Contents?: true
Size: 565 Bytes
Versions: 83
Compression:
Stored size: 565 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/fixtures/classes' describe "Numeric#divmod" do before(:each) do @obj = NumericSub.new end it "returns [quotient, modulus], with quotient being obtained as in Numeric#div and modulus being obtained by calling self#% with other" do @obj.should_receive(:/).with(10).and_return(13 - TOLERANCE) @obj.should_receive(:%).with(10).and_return(3) @obj.divmod(10).should == [12, 3] end end
Version data entries
83 entries across 83 versions & 1 rubygems