From 5cc567243b2b2843f7de9d586fdf2119e10d515f Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 13:19:49 -0300 Subject: [PATCH] add test --- test/rustint/core_test.clj | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/rustint/core_test.clj b/test/rustint/core_test.clj index 6c3db2b..9faf6bd 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -256,3 +256,12 @@ (is (nil? (dump nil))) ) ) + +(deftest convertir-formato-impresion-01 + (testing "Test 01 convertir-formato-impresion" + (is (= + (convertir-formato-impresion '("Hola, mundo!")) + '("Hola, mundo!") + ) + ) +)