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

12 lines
329 B
PHP

<?php
$I = new CliGuy($scenario);
$container = Robo\Robo::getContainer();
$I->wantTo('delete dir with DeleteDirTask');
$I->amInPath(codecept_data_dir());
$I->seeFileFound('robo.txt', 'sandbox');
$I->taskDeleteDir(['sandbox/box'])
->run();
$I->dontSeeFileFound('box', 'sandbox');
$I->dontSeeFileFound('robo.txt', 'sandbox');