1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-02 15:53:12 +02:00

core: fix check of tags in lines

All changes:
- fix check of tags in lines: check lines without tags, fix check of tags with
  negation ("!tag")
- add string functions string_split_tags and string_free_split_tags
- add tests on function gui_line_match_tags
This commit is contained in:
Sébastien Helleu
2018-08-07 21:50:04 +02:00
parent d699ae89aa
commit 12a6f74ec0
23 changed files with 382 additions and 275 deletions
+3 -3
View File
@@ -26,7 +26,7 @@ extern "C"
#include "src/core/wee-url.h"
}
TEST_GROUP(Url)
TEST_GROUP(CoreUrl)
{
};
@@ -35,7 +35,7 @@ TEST_GROUP(Url)
* weeurl_download
*/
TEST(Url, Download)
TEST(CoreUrl, Download)
{
/* TODO: write tests */
}
@@ -45,7 +45,7 @@ TEST(Url, Download)
* weeurl_option_add_to_infolist
*/
TEST(Url, AddToInfolist)
TEST(CoreUrl, AddToInfolist)
{
/* TODO: write tests */
}