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
|
2018-01-29 11:08:16 -05:00
|
|
|
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
|
2018-01-29 11:08:16 -05:00
|
|
|
it_behaves_like :rational_divide_int, :/
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Rational#/ when passed a Rational" do
|
2018-01-29 11:08:16 -05:00
|
|
|
it_behaves_like :rational_divide_rat, :/
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Rational#/ when passed a Float" do
|
2018-01-29 11:08:16 -05:00
|
|
|
it_behaves_like :rational_divide_float, :/
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|