From 853230fdb37af94a71456d2dd65229ee4c42b661 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:12:34 -0300 Subject: [PATCH] add first compatibles 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 ca0443d..2cc839d 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -61,3 +61,9 @@ (is (= (pasar-a-int [10]) [10])) ) ) + +(deftest compatibles-test01 + (testing "Test 01 compatibles?" + (is (= (compatibles? 'i64 5) true)) + ) +)