From d85896f4efeede0ce71764f68921d16e05fe327a Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:08:26 -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 dce8f51..23f9e5c 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -49,3 +49,9 @@ (is (= (pasar-a-int 10) 10)) ) ) + +(deftest pasar-a-int-test04 + (testing "Test 04 int pasar-a-int" + (is (= (pasar-a-int 'a) 'a)) + ) +)