14 lines
328 B
PHP
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');
|
|
|
|
|