From 722f40dd333939262486f0fd4f9d8125d18726a4 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 09:19:19 -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 cf2601a..1e223e0 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -145,3 +145,9 @@ (is (= (dividir 12 3.0) 4.0)) ) ) + +(deftest dividir-test04 + (testing "Test 04h dividir" + (is (= (dividir 12.0 3.0) 4.0)) + ) +)