From 081f23cf2484b649b48e0f5c9c72e5dc1b7a9ccb Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 13:44:09 -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 9d65637..cd94acd 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -346,3 +346,13 @@ ) ) ) + +(deftest test-especificador-formato-04 + (testing "Test 04 especificador formato" + (is (= + (especificador-formato 2.0 ".4") + "%.4f" + ) + ) + ) +)