Move tests into app/tests subdirectory (not app/inc/test or app/test)

This commit is contained in:
nathangray 2017-10-18 18:30:54 +02:00
parent 237d81ce36
commit 9e6ecce1d0

View File

@ -310,7 +310,7 @@ class Widget
{
foreach(new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator(__DIR__.'/Widget')) as $path)
{
if(strpos($path, 'test/') !== FALSE)
if(strpos($path, 'tests/') !== FALSE)
{
continue;
}