From a78a6df37719862cf4727b54fd569ffe224479c9 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 11:41:48 -0300 Subject: [PATCH] add test --- test/rustint/core_test.clj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/rustint/core_test.clj b/test/rustint/core_test.clj index 21ac491..0e68423 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -170,8 +170,8 @@ ) ) -(deftest identificador-test02 - (testing "Test 02 identificador" - (is (= (identificador? 'bool) false)) +(deftest palabra-reservada-test01 + (testing "Test 01 palabra reservada" + (is (= (palabra-reservada? 'while) true)) ) )