From ed076fbc34bc064fa5e6ee06500f2b2fab240943 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:07:55 -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 82aa507..dce8f51 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -43,3 +43,9 @@ (is (= (pasar-a-int 10.0) 10)) ) ) + +(deftest pasar-a-int-test03 + (testing "Test 03 int pasar-a-int" + (is (= (pasar-a-int 10) 10)) + ) +)