From 32a503d3c525ebc2647cdaae04bf407d66ac7687 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 13:43:02 -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 c3103e4..4c8b17a 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -326,3 +326,13 @@ ) ) ) + +(deftest test-especificador-formato-02 + (testing "Test 02 especificador formato" + (is (= + (especificador-formato 0 nil) + "%d" + ) + ) + ) +)