Added unit test for new search ability

This commit is contained in:
Jason Perkins 2015-08-23 14:53:56 -04:00
parent 14d94bf319
commit 072b47eb56
2 changed files with 5 additions and 0 deletions

View File

@ -109,6 +109,10 @@
test.istrue(table.contains(result, "../.gitignore"))
end
function suite.matchfiles_onComboSearch()
local result = os.matchfiles("folder/**/*.txt")
test.istrue(table.contains(result, "folder/subfolder/hello.txt"))
end
--

View File

@ -0,0 +1 @@
Hi there!