summaryrefslogtreecommitdiff
path: root/spec/ruby/library/bigdecimal/shared/quo.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/bigdecimal/shared/quo.rb')
-rw-r--r--spec/ruby/library/bigdecimal/shared/quo.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/ruby/library/bigdecimal/shared/quo.rb b/spec/ruby/library/bigdecimal/shared/quo.rb
index 46e6d62bf4..ec6d5b49e9 100644
--- a/spec/ruby/library/bigdecimal/shared/quo.rb
+++ b/spec/ruby/library/bigdecimal/shared/quo.rb
@@ -31,6 +31,7 @@ describe :bigdecimal_quo, shared: true do
describe "with Object" do
it "tries to coerce the other operand to self" do
+ skip "TODO: BigDecimal 3.2.0" if BigDecimal::VERSION == '3.2.0'
object = mock("Object")
object.should_receive(:coerce).with(@one).and_return([@one, @two])
@one.send(@method, object, *@object).should == BigDecimal("0.5")