本文整理汇总了PHP中CliGuy::seeDirFound方法的典型用法代码示例。如果您正苦于以下问题:PHP CliGuy::seeDirFound方法的具体用法?PHP CliGuy::seeDirFound怎么用?PHP CliGuy::seeDirFound使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CliGuy
的用法示例。
在下文中一共展示了CliGuy::seeDirFound方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: useTheMirrorDirShortcut
public function useTheMirrorDirShortcut(CliGuy $I)
{
$I->wantTo('mirror dir with _mirrorDir shortcut');
$I->shortcutMirrorDir('box', 'bin');
$I->seeDirFound('bin');
$I->seeFileFound('robo.txt', 'bin');
}
示例2: checkCompatFilesCreated
protected function checkCompatFilesCreated(\CliGuy $I)
{
$I->seeDirFound('tests/_log');
$I->seeDirFound('tests/_data');
$I->seeDirFound('tests/_helpers');
$I->seeFileFound('functional.suite.yml', 'tests');
$I->seeFileFound('acceptance.suite.yml', 'tests');
$I->seeFileFound('unit.suite.yml', 'tests');
$I->seeFileFound('_bootstrap.php', 'tests/acceptance');
$I->seeFileFound('_bootstrap.php', 'tests/functional');
$I->seeFileFound('_bootstrap.php', 'tests/unit');
$I->seeFileFound('WebGuy.php', 'tests/acceptance');
$I->seeFileFound('TestGuy.php', 'tests/functional');
$I->seeFileFound('CodeGuy.php', 'tests/unit');
$I->seeFileFound('WebHelper.php', 'tests/_helpers');
$I->seeFileFound('TestHelper.php', 'tests/_helpers');
$I->seeFileFound('CodeHelper.php', 'tests/_helpers');
}
示例3: checkFilesCreated
protected function checkFilesCreated(\CliGuy $I)
{
$I->seeDirFound('tests/_support');
$I->seeDirFound('tests/_data');
$I->seeDirFound('tests/_output');
$I->seeDirFound('tests/_envs');
$I->seeFileFound('functional.suite.yml', 'tests');
$I->seeFileFound('acceptance.suite.yml', 'tests');
$I->seeFileFound('unit.suite.yml', 'tests');
$I->seeFileFound('_bootstrap.php', 'tests/acceptance');
$I->seeFileFound('_bootstrap.php', 'tests/functional');
$I->seeFileFound('_bootstrap.php', 'tests/unit');
$I->seeFileFound('AcceptanceTester.php', 'tests/_support');
$I->seeFileFound('FunctionalTester.php', 'tests/_support');
$I->seeFileFound('UnitTester.php', 'tests/_support');
$I->seeFileFound('Acceptance.php', 'tests/_support/Helper');
$I->seeFileFound('Functional.php', 'tests/_support/Helper');
$I->seeFileFound('Unit.php', 'tests/_support/Helper');
}
示例4: CliGuy
<?php
$I = new CliGuy($scenario);
$I->wantTo('flatten dir with FlattenDir task');
$I->amInPath(codecept_data_dir() . 'sandbox');
$I->taskFlattenDir(['some/deeply/nested/*.re' => 'flattened', '*.txt' => 'flattened'])->run();
$I->seeDirFound('flattened');
$I->seeFileFound('structu.re', 'flattened');
$I->seeFileFound('a.txt', 'flattened');
$I->seeFileFound('b.txt', 'flattened');
示例5: CliGuy
<?php
$I = new CliGuy($scenario);
$I->wantTo('copy dir with CopyDir task');
$I->amInPath(codecept_data_dir() . 'sandbox');
$I->taskCopyDir(['box' => 'bin'])->run();
$I->seeDirFound('bin');
$I->seeFileFound('robo.txt', 'bin');
示例6: CliGuy
<?php
$I = new CliGuy($scenario);
$I->wantTo('copy dir recursively with CopyDir task');
$I->amInPath(codecept_data_dir() . 'sandbox');
$I->seeDirFound('some/deeply/nested');
$I->seeFileFound('structu.re', 'some/deeply/nested');
$I->taskCopyDir(['some/deeply' => 'some_destination/deeply'])->run();
$I->seeDirFound('some_destination/deeply/nested');
$I->seeFileFound('structu.re', 'some_destination/deeply/nested');
示例7: CliGuy
<?php
$I = new CliGuy($scenario);
$I->wantTo('archive directory and then extract it again with Archive and Extract tasks');
$I->amInPath(codecept_data_dir() . 'sandbox');
$I->seeDirFound('some/deeply/nested');
$I->seeFileFound('structu.re', 'some/deeply/nested');
$I->seeFileFound('existing_file', 'some/deeply');
// Test a bunch of archive types that we support
foreach (['zip', 'tar', 'tar.gz', 'tar.bz2', 'tgz'] as $archiveType) {
// First, take everything from the folder 'some/deeply' and make
// an archive for it located in 'deep'
$I->taskPack("deeply.{$archiveType}")->add(['deep' => 'some/deeply'])->run();
$I->seeFileFound("deeply.{$archiveType}");
// We are next going to extract the archive we created, this time
// putting it into a folder called "extracted-$archiveType" (different
// for each archive type we test). We rely on the default behavior
// of our extractor to remove the top-level directory in the archive
// ("deeply").
$I->taskExtract("deeply.{$archiveType}")->to("extracted-{$archiveType}")->preserveTopDirectory(false)->run();
$I->seeDirFound("extracted-{$archiveType}");
$I->seeDirFound("extracted-{$archiveType}/nested");
$I->seeFileFound('structu.re', "extracted-{$archiveType}/nested");
// Next, we'll extract the same archive again, this time preserving
// the top-level folder.
$I->taskExtract("deeply.{$archiveType}")->to("preserved-{$archiveType}")->preserveTopDirectory()->run();
$I->seeDirFound("preserved-{$archiveType}");
$I->seeDirFound("preserved-{$archiveType}/deep/nested");
$I->seeFileFound('structu.re', "preserved-{$archiveType}/deep/nested");
// Make another archive, this time composed of fanciful locations
$I->taskPack("composed.{$archiveType}")->add(['a/b/existing_file' => 'some/deeply/existing_file'])->add(['x/y/z/structu.re' => 'some/deeply/nested/structu.re'])->run();
示例8: CliGuy
<?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');
示例9: CliGuy
<?php
$I = new CliGuy($scenario);
$I->wantTo('flatten dir with FlattenDir task including parents');
$I->amInPath(codecept_data_dir() . 'sandbox');
$I->taskFlattenDir('some/deeply/nested/*.re')->includeParents(array(1, 1))->parentDir('some')->to('flattened')->run();
$I->seeDirFound('flattened/deeply/nested');
$I->seeFileFound('structu.re', 'flattened/deeply/nested');