diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-08-06 07:53:04 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-08-06 07:53:04 +0200 |
commit | 13fc108c6daabbdc4c3215884cec9e3f54ff7d21 (patch) | |
tree | 94f8f8e9e2fd40da20be98b1cfcd9847674ccc35 /tests/unit | |
parent | aa8a1cc775a9ae0a5a319b0bafcb36c96a18d776 (diff) | |
download | weechat-13fc108c6daabbdc4c3215884cec9e3f54ff7d21.zip |
tests: add TODO comments for missing tests
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/core/test-string.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/unit/core/test-string.cpp b/tests/unit/core/test-string.cpp index f8de9d4b5..f3f0c6d8d 100644 --- a/tests/unit/core/test-string.cpp +++ b/tests/unit/core/test-string.cpp @@ -528,6 +528,9 @@ TEST(String, Replace) STRCMP_EQUAL("test xxx def", string_replace("test abc def", "abc", "xxx")); STRCMP_EQUAL("xxx test xxx def xxx", string_replace("abc test abc def abc", "abc", "xxx")); + + /* TODO: write tests for string_replace_regex */ + /* TODO: write tests for string_replace_with_callback */ } /* |