From 4407c6daa355c680c5387c268643d9d3db2d949e Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:16:41 -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 2cc839d..7096624 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -67,3 +67,9 @@ (is (= (compatibles? 'i64 5) true)) ) ) + +(deftest compatibles-test02 + (testing "Test 02 compatibles?" + (is (= (compatibles? 'i64 5.0) false)) + ) +)