From d1613f0848ce5f91f047db961c21d243d56c4487 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:33:29 -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 3a002aa..661cafb 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -91,3 +91,9 @@ (is (= (compatibles? 'String "Hola") true)) ) ) + +(deftest compatibles-test06 + (testing "Test 06 compatibles?" + (is (= (compatibles? 'bool true) true)) + ) +)