From 5ec5fee2d0a62dc6ab12c58b0013cac9acf21db8 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:40:30 -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 aa14cba..0560ac4 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -109,3 +109,9 @@ (is (= (compatibles? 'usize 1) true)) ) ) + +(deftest compatibles-test09 + (testing "Test 09 compatibles?" + (is (= (compatibles? 'char \a) true)) + ) +)