From 3fb827e11f359d466a9c50db4523eec486bacf91 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 11:32: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 aa31524..5b6b371 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -163,3 +163,9 @@ (is (= (dividir 1 2.0) 0.5)) ) ) + +(deftest identificador-test01 + (testing "Test 01 identificador" + (is (= (identificador? 'boolean) true)) + ) +)