From 4bd40e4102356539d3e9e8b5e92abc2629673161 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 11:33:34 -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 5b6b371..21ac491 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -169,3 +169,9 @@ (is (= (identificador? 'boolean) true)) ) ) + +(deftest identificador-test02 + (testing "Test 02 identificador" + (is (= (identificador? 'bool) false)) + ) +)