2017-05-07 08:04:49 -04:00
|
|
|
require File.expand_path('../../../shared/rational/divide', __FILE__)
|
2017-12-27 11:12:47 -05:00
|
|
|
require File.expand_path('../../../shared/rational/arithmetic_exception_in_coerce', __FILE__)
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
describe "Rational#/" do
|
|
|
|
it_behaves_like(:rational_divide, :/)
|
2017-12-27 11:12:47 -05:00
|
|
|
it_behaves_like :rational_arithmetic_exception_in_coerce, :/
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Rational#/ when passed an Integer" do
|
|
|
|
it_behaves_like(:rational_divide_int, :/)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Rational#/ when passed a Rational" do
|
|
|
|
it_behaves_like(:rational_divide_rat, :/)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Rational#/ when passed a Float" do
|
|
|
|
it_behaves_like(:rational_divide_float, :/)
|
|
|
|
end
|