From 9747a51242217b6c348916a684c4b9c3e7a7b7b7 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:41:18 -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 0560ac4..804be2a 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -115,3 +115,9 @@ (is (= (compatibles? 'char \a) true)) ) ) + +(deftest compatibles-test10 + (testing "Test 10 compatibles?" + (is (= (compatibles? 'char 'a) false)) + ) +)