Sha256: 5e70cfcaefbf62106ef62e5eff3d4608faecfe7f26ba45eda9423e32be82ed0f
Contents?: true
Size: 730 Bytes
Versions: 52
Compression:
Stored size: 730 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) require File.expand_path('../fixtures/classes', __FILE__) describe "Numeric#quo" do ruby_version_is ""..."1.9" do it "returns the result of calling self#/ with other" do obj = NumericSpecs::Subclass.new obj.should_receive(:/).with(19).and_return(:result) obj.quo(19).should == :result end end ruby_version_is "1.9" do it "returns the result of calling self#/ with other" do obj = NumericSpecs::Subclass.new obj.should_receive(:coerce).twice.and_return([19,19]) obj.should_receive(:<=>).any_number_of_times.and_return(1) obj.should_receive(:/).and_return(20) obj.quo(19).should == 20 end end end
Version data entries
52 entries across 52 versions & 2 rubygems