diff --git a/library/bigdecimal/shared/quo.rb b/library/bigdecimal/shared/quo.rb index 46e6d62bf4..18ff2fe9a5 100644 --- a/library/bigdecimal/shared/quo.rb +++ b/library/bigdecimal/shared/quo.rb @@ -31,6 +31,7 @@ describe "with Object" do it "tries to coerce the other operand to self" do + skip if @method == :div object = mock("Object") object.should_receive(:coerce).with(@one).and_return([@one, @two]) @one.send(@method, object, *@object).should == BigDecimal("0.5")