2018-03-04 10:09:32 -05:00
|
|
|
require_relative '../../shared/rational/plus'
|
|
|
|
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_plus, :+
|
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#+ with a Rational" do
|
2018-01-29 11:08:16 -05:00
|
|
|
it_behaves_like :rational_plus_rat, :+
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
describe "Rational#+ with a Float" do
|
2018-01-29 11:08:16 -05:00
|
|
|
it_behaves_like :rational_plus_float, :+
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Rational#+ with an Integer" do
|
2018-01-29 11:08:16 -05:00
|
|
|
it_behaves_like :rational_plus_int, :+
|
2017-05-07 08:04:49 -04:00
|
|
|
end
|