From b93380b56ceab283ae99028dd153c9c0706ead4b Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:31:39 -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 b73a1a3..a183086 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -79,3 +79,9 @@ (is (= (compatibles? 'i64 [5.0]) true)) ) ) + +(deftest compatibles-test04 + (testing "Test 04 compatibles?" + (is (= (compatibles? 'f64 5.0) true)) + ) +)