Files
icehrm/lib/composer/vendor/consolidation/robo/tests/cli/CleanDirCept.php
2017-09-03 20:39:22 +02:00

14 lines
328 B
PHP

<?php
$I = new CliGuy($scenario);
$I->wantTo('clean dir with DeleteDirTask');
$I->amInPath(codecept_data_dir());
$I->seeFileFound('robo.txt', 'sandbox');
$I->taskCleanDir(['sandbox'])
->run();
$I->dontSeeFileFound('box', 'sandbox');
$I->dontSeeFileFound('robo.txt', 'sandbox');
$I->dontSeeFileFound('a.txt' , 'sandbox');