From 85973d341ba261eff29179af73b946e52fbc841f Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 13:21:50 -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 c7acccb..740941d 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -266,3 +266,13 @@ ) ) ) + +(deftest convertir-formato-impresion-01 + (testing "Test 01 convertir-formato-impresion" + (is (= + (convertir-formato-impresion '("Hola, mundo 2!")) + '("Hola, mundo 2!") + ) + ) + ) +)