12 lines
329 B
PHP
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');
|