We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1399e4f commit 564d841Copy full SHA for 564d841
test/FixedDecimal.jl
@@ -843,6 +843,13 @@ end
843
844
@test_throws DivideError rdiv_with_overflow(typemax(T), T(0))
845
@test_throws DivideError rdiv_with_overflow(typemin(T), T(0))
846
+ @test_throws DivideError rdiv_with_overflow(eps(T), T(0))
847
+ @test_throws DivideError rdiv_with_overflow(-eps(T), T(0))
848
+
849
+ @test_throws DivideError fld_with_overflow(typemax(T), T(0))
850
+ @test_throws DivideError fld_with_overflow(typemin(T), T(0))
851
+ @test_throws DivideError fld_with_overflow(eps(T), T(0))
852
+ @test_throws DivideError fld_with_overflow(-eps(T), T(0))
853
end
854
855
0 commit comments