2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../shared/rational/divmod'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
describe "Rational#divmod when passed a Rational" do
|
2018-01-29 11:08:16 -05:00
|
|
|
it_behaves_like :rational_divmod_rat, :divmod
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Rational#divmod when passed an Integer" do
|
2018-01-29 11:08:16 -05:00
|
|
|
it_behaves_like :rational_divmod_int, :divmod
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Rational#divmod when passed a Float" do
|
2018-01-29 11:08:16 -05:00
|
|
|
it_behaves_like :rational_divmod_float, :divmod
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|