diff options
-rw-r--r-- | tests/empathy-live-search-test.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/empathy-live-search-test.c b/tests/empathy-live-search-test.c index 6263481a2..6401f2557 100644 --- a/tests/empathy-live-search-test.c +++ b/tests/empathy-live-search-test.c @@ -35,6 +35,12 @@ test_live_search (void) { "élève", "ele", TRUE }, { "Azais", "AzaÏs", TRUE }, + /* Multi words */ + { "Xavier Claessens", "Xav Cla", TRUE }, + { "Xavier Claessens", "Cla Xav", TRUE }, + { "Foo Bar Baz", " b ", TRUE }, + { "Foo Bar Baz", "bar bazz", FALSE }, + { NULL, NULL, FALSE } }; guint i; |