From 7f2f89407f14ccc55874c70a9a9da86c89b1c405 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 09:19:49 -0300 Subject: [PATCH] add test --- test/rustint/core_test.clj | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/rustint/core_test.clj b/test/rustint/core_test.clj index 1e223e0..3bddaeb 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -151,3 +151,9 @@ (is (= (dividir 12.0 3.0) 4.0)) ) ) + +(deftest dividir-test05 + (testing "Test 05 dividir" + (is (= (dividir 1 2) 0)) + ) +)