2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../shared/rational/multiply'
|
|
|
|
require_relative '../../shared/rational/arithmetic_exception_in_coerce'
|
2017-05-07 08:04:49 -04:00
|
|
|
|
|
|
|
describe "Rational#*" do
|
2018-01-29 11:08:16 -05:00
|
|
|
it_behaves_like :rational_multiply, :*
|
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#* passed a Rational" do
|
2018-01-29 11:08:16 -05:00
|
|
|
it_behaves_like :rational_multiply_rat, :*
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Rational#* passed a Float" do
|
2018-01-29 11:08:16 -05:00
|
|
|
it_behaves_like :rational_multiply_float, :*
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Rational#* passed an Integer" do
|
2018-01-29 11:08:16 -05:00
|
|
|
it_behaves_like :rational_multiply_int, :*
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|