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)) + ) +)