From 775dfee6a82fe5ee0cdcd97859d0436eb83157d4 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:41:56 -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 804be2a..71d0a1b 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -121,3 +121,9 @@ (is (= (compatibles? 'char 'a) false)) ) ) + +(deftest compatibles-test11 + (testing "Test 11 compatibles?" + (is (= (compatibles? 'char ['a]) true)) + ) +)