From ff4791034526c3104889ee7105b7bcfb3809cd93 Mon Sep 17 00:00:00 2001 From: Petr Vana Date: Thu, 26 May 2022 11:11:35 +0200 Subject: [PATCH] Add todo for mod with between two intervals --- test/interval_tests/numeric.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/interval_tests/numeric.jl b/test/interval_tests/numeric.jl index 3d88a91a0..d44a44122 100644 --- a/test/interval_tests/numeric.jl +++ b/test/interval_tests/numeric.jl @@ -460,4 +460,7 @@ end @test mod(x, 0.5) == 0..0.5 @test_throws AssertionError mod(x, -1) + + # TODO - implement mod for two intervals + @test_throws TypeError mod(1..2, 1.4..1.5) end