From b85a22757fe63ce0a9a9c443083d1fe53d0a4559 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:35:25 -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 50dca62..aa14cba 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -103,3 +103,9 @@ (is (= (compatibles? 'bool 1) false)) ) ) + +(deftest compatibles-test08 + (testing "Test 08 compatibles?" + (is (= (compatibles? 'usize 1) true)) + ) +)