Refactoring
This commit is contained in:
12
lib/composer/vendor/consolidation/robo/tests/cli/CopyDirOverwritesFilesCept.php
vendored
Normal file
12
lib/composer/vendor/consolidation/robo/tests/cli/CopyDirOverwritesFilesCept.php
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
$I = new CliGuy($scenario);
|
||||
|
||||
$I->wantTo('overwrite a file with CopyDir task');
|
||||
$I->amInPath(codecept_data_dir() . 'sandbox');
|
||||
$I->seeDirFound('some');
|
||||
$I->seeFileFound('existing_file', 'some');
|
||||
$I->taskCopyDir(['some' => 'some_destination'])
|
||||
->run();
|
||||
$I->seeFileFound('existing_file', 'some_destination/deeply');
|
||||
$I->openFile('some_destination/deeply/existing_file');
|
||||
$I->seeInThisFile('some existing file');
|
||||
Reference in New Issue
Block a user