init
This commit is contained in:
16
vendor/codeception/base/tests/cli/CodeceptionYmlInTestsDirCest.php
vendored
Normal file
16
vendor/codeception/base/tests/cli/CodeceptionYmlInTestsDirCest.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
class CodeceptionYmlInTestsDirCest
|
||||
{
|
||||
/**
|
||||
* @param CliGuy $I
|
||||
*/
|
||||
public function runTestPath(\CliGuy $I)
|
||||
{
|
||||
$I->amInPath('tests/data/codeception_yml_in_tests_dir');
|
||||
$I->executeCommand('run unit/ExampleCest.php');
|
||||
|
||||
$I->seeResultCodeIs(0);
|
||||
$I->dontSeeInShellOutput('RuntimeException');
|
||||
$I->dontSeeInShellOutput('could not be found');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user