From e428c03104ae6aee53583ec3b849be9b3e7f896c Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 09:18:43 -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 33d0c83..cf2601a 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -139,3 +139,9 @@ (is (= (dividir 12.0 3) 4.0)) ) ) + +(deftest dividir-test03 + (testing "Test 03 dividir" + (is (= (dividir 12 3.0) 4.0)) + ) +)