diff options
Diffstat (limited to 'src/testsuite.cpp')
-rw-r--r-- | src/testsuite.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/testsuite.cpp b/src/testsuite.cpp index 1c831ba50..8343aed27 100644 --- a/src/testsuite.cpp +++ b/src/testsuite.cpp @@ -131,6 +131,9 @@ bool TestSuite::DoWildTests() WCTEST("foofar", "**f?*f*?"); WCTEST("r", "*"); WCTEST("", ""); + WCTEST("test@foo.bar.test", "*@*.bar.test"); + WCTEST("test@foo.bar.test", "*test*@*.bar.test"); + WCTEST("test@foo.bar.test", "*@*test"); WCTESTNOT("foobar", "bazqux"); WCTESTNOT("foobar", "*qux"); |