From 5278eff87ebdf0ef6c137619ffdc5185836c556c Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 09:31:21 -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 3bddaeb..aa31524 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -157,3 +157,9 @@ (is (= (dividir 1 2) 0)) ) ) + +(deftest dividir-test06 + (testing "Test 06 dividir" + (is (= (dividir 1 2.0) 0.5)) + ) +)