GroupExtensionCept.php 544 B

1234567891011
  1. <?php
  2. $I = new CliGuy($scenario);
  3. $I->wantTo('see that my group extension works');
  4. $I->amInPath('tests/data/sandbox');
  5. $I->executeCommand('run skipped -g notorun -c codeception_grouped.yml');
  6. $I->dontSeeInShellOutput("======> Entering NoGroup Test Scope\nMake it incomplete");
  7. $I->dontSeeInShellOutput('<====== Ending NoGroup Test Scope');
  8. $I->executeCommand('run dummy -g ok -c codeception_grouped.yml');
  9. $I->dontSeeInShellOutput("======> Entering Ok Test Scope\nMake it incomplete");
  10. $I->dontSeeInShellOutput('<====== Ending Ok Test Scope');