From fe37154c96abee69cd14c65e1a48629203fb413d Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:06:40 -0300 Subject: [PATCH] first pasar a int 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 a16a073..b948706 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -31,3 +31,9 @@ (is (= (pasar-a-float [10]) [10])) ) ) + +(deftest pasar-a-int-test01 + (testing "Test int pasar-a-int" + (is (= (pasar-a-int "10") 10)) + ) +)