init
This commit is contained in:
9
vendor/codeception/base/tests/cli/GroupEventsCept.php
vendored
Normal file
9
vendor/codeception/base/tests/cli/GroupEventsCept.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
$I = new CliGuy($scenario);
|
||||
$I->wantTo('see that my group events fire only once');
|
||||
$I->amInPath('tests/data/claypit');
|
||||
$I->executeCommand('run dummy -g countevents -c codeception_grouped.yml --no-colors');
|
||||
$I->seeInShellOutput('Group Before Events: 1');
|
||||
$I->dontSeeInShellOutput('Group Before Events: 2');
|
||||
$I->seeInShellOutput('Group After Events: 1');
|
||||
$I->dontSeeInShellOutput('Group After Events: 2');
|
||||
Reference in New Issue
Block a user