From 6272dabed003a07cd079bcfb49f0e192a7a36b2a Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 13:42:38 -0300 Subject: [PATCH] add test --- test/rustint/core_test.clj | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/rustint/core_test.clj b/test/rustint/core_test.clj index ec6cefe..c3103e4 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -316,3 +316,13 @@ ) ) ) + +(deftest test-especificador-formato-01 + (testing "Test 01 especificador formato" + (is (= + (especificador-formato "Bond" nil) + "%s" + ) + ) + ) +)