From aa4ba3aa07909e21ef9a19b2615bb5d8ea509d4f Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 09:17:22 -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 13b4d78..87af41d 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -133,3 +133,9 @@ (is (= (dividir 12 3) 4)) ) ) + +(deftest dividir-test02 + (testing "Test 02 dividir" + (is (= (dividir 12.0 3) 4)) + ) +)