mirror of
https://github.com/weechat/weechat.git
synced 2026-07-01 15:26:37 +02:00
typing: add typing plugin
This commit is contained in:
@@ -2093,13 +2093,12 @@ TEST(CoreString, InputForBuffer)
|
||||
char *str;
|
||||
|
||||
POINTERS_EQUAL(NULL, string_input_for_buffer (NULL));
|
||||
POINTERS_EQUAL(NULL, string_input_for_buffer ("/"));
|
||||
POINTERS_EQUAL(NULL, string_input_for_buffer ("/abc"));
|
||||
|
||||
str = strdup ("");
|
||||
STRCMP_EQUAL(str, string_input_for_buffer (str));
|
||||
free (str);
|
||||
str = strdup ("/");
|
||||
STRCMP_EQUAL(str, string_input_for_buffer (str));
|
||||
free (str);
|
||||
str = strdup ("/ ");
|
||||
STRCMP_EQUAL(str, string_input_for_buffer (str));
|
||||
free (str);
|
||||
|
||||
Reference in New Issue
Block a user