From c915f7753918802c92c07475995d294247fea485 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sat, 26 Nov 2022 23:32:44 -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 a183086..3a002aa 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -85,3 +85,9 @@ (is (= (compatibles? 'f64 5.0) true)) ) ) + +(deftest compatibles-test05 + (testing "Test 05 compatibles?" + (is (= (compatibles? 'String "Hola") true)) + ) +)