From c7c6380eaad2569f9fc8c4a99b1886a00f13c5ca Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:24:37 -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 7096624..b73a1a3 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -73,3 +73,9 @@ (is (= (compatibles? 'i64 5.0) false)) ) ) + +(deftest compatibles-test03 + (testing "Test 03 compatibles?" + (is (= (compatibles? 'i64 [5.0]) true)) + ) +)