From a6029c7d31ec3c14f168059709137c4056a22efe Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:07:29 -0300 Subject: [PATCH] add test --- test/rustint/core_test.clj | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/rustint/core_test.clj b/test/rustint/core_test.clj index b948706..82aa507 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -33,7 +33,13 @@ ) (deftest pasar-a-int-test01 - (testing "Test int pasar-a-int" + (testing "Test 01 int pasar-a-int" (is (= (pasar-a-int "10") 10)) ) ) + +(deftest pasar-a-int-test02 + (testing "Test 02 int pasar-a-int" + (is (= (pasar-a-int 10.0) 10)) + ) +)