From 8fa9bfec236eee13116f970f01727b1827db85f9 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:02:20 -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 cf18105..9b7bcf4 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -19,3 +19,9 @@ (is (= (pasar-a-float 10.0) 10.0)) ) ) + +(deftest pasar-a-float-test04 + (testing "Test 04 pasar-a-float" + (is (= (pasar-a-float 'a) 'a)) + ) +)