Skip to content

Commit 19d23af

Browse files
committed
add test for when using wildcard directory search
1 parent 3effb40 commit 19d23af

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Flow.Launcher.Test/Plugins/ExplorerTest.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,9 @@ public void GivenQuery_WhenActionKeywordForFileContentSearchExists_ThenFileConte
243243
[TestCase(@"cc:\", false)]
244244
[TestCase(@"\\\SomeNetworkLocation\", false)]
245245
[TestCase("RandomFile", false)]
246+
[TestCase(@"c:\>*", true)]
247+
[TestCase(@"c:\>", true)]
248+
[TestCase(@"c:\SomeLocation\SomeOtherLocation\>", true)]
246249
public void WhenGivenQuerySearchString_ThenShouldIndicateIfIsLocationPathString(string querySearchString, bool expectedResult)
247250
{
248251
// When, Given

0 commit comments

Comments
 (0)