From e68511f39d8af0d683f57846a26ab74011796cd7 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:02:58 -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 9b7bcf4..a16a073 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -25,3 +25,9 @@ (is (= (pasar-a-float 'a) 'a)) ) ) + +(deftest pasar-a-float-test05 + (testing "Test 05 pasar-a-float" + (is (= (pasar-a-float [10]) [10])) + ) +)