From ce335d29245015eb53f03eaddb6f56aafa20760b Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 22:59:31 -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 ed24497..cf18105 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -13,3 +13,9 @@ (is (= (pasar-a-float "10") 10.0)) ) ) + +(deftest pasar-a-float-test03 + (testing "Test 03 pasar-a-float" + (is (= (pasar-a-float 10.0) 10.0)) + ) +)