From 7ad147a831769af880285dace0ce9a7979c30d76 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 13:38:03 -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 3f95cfd..1b05cb3 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -286,3 +286,13 @@ ) ) ) + +(deftest get-rust-formatters-02 + (testing "Test 02 get-rust-formatters" + (is (= + (get-rust-formatters "- My name is {}, James {}.\n- Hello, {}{}{}!") + '(nil nil nil nil nil) + ) + ) + ) +)