From 63a394044edee3f362c672f90f81e3d5a9086113 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 13:43:45 -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 4c8b17a..9d65637 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -336,3 +336,13 @@ ) ) ) + +(deftest test-especificador-formato-03 + (testing "Test 03 especificador formato" + (is (= + (especificador-formato 2.0 nil) + "%.0f" + ) + ) + ) +)