From 26fbce7805393d4205263962c1e8f96368acebdb Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:08:43 -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 23f9e5c..ca0443d 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -55,3 +55,9 @@ (is (= (pasar-a-int 'a) 'a)) ) ) + +(deftest pasar-a-int-test05 + (testing "Test 05 int pasar-a-int" + (is (= (pasar-a-int [10]) [10])) + ) +)