summaryrefslogtreecommitdiff
path: root/spec/ruby/core/numeric/shared/quo.rb
blob: 2392636fe7dc2d578a4a3d150cc9e79a75c202ed (plain)
1
2
3
4
5
6
7
describe :numeric_quo_18, shared: true do
  it "returns the result of calling self#/ with other" do
    obj = mock_numeric('numeric')
    obj.should_receive(:/).with(19).and_return(:result)
    obj.send(@method, 19).should == :result
  end
end