From 8accf19eed2cf792a97f410aadcfcd4439f551f1 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:34:50 -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 661cafb..50dca62 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -97,3 +97,9 @@ (is (= (compatibles? 'bool true) true)) ) ) + +(deftest compatibles-test07 + (testing "Test 07 compatibles?" + (is (= (compatibles? 'bool 1) false)) + ) +)