-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #322 from lucatume/TimothyBJacobs-add-wp-cli-see-m…
…ethods Add support for "seeing" WP CLI output and exit codes.
- Loading branch information
Showing
4 changed files
with
220 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?php | ||
use ClimoduleTester as Tester; | ||
|
||
class SeeMethodsCest | ||
{ | ||
public function it_should_see_correct_output(Tester $I) | ||
{ | ||
$I->cli('eval "echo \'hi\';"'); | ||
$I->seeInShellOutput( 'hi' ); | ||
} | ||
|
||
public function it_should_not_see_correct_output(Tester $I) | ||
{ | ||
$I->cli('eval "echo \'hi\';"'); | ||
$I->dontSeeInShellOutput( 'hello' ); | ||
} | ||
|
||
public function it_should_see_correct_output_matches(Tester $I) | ||
{ | ||
$I->cli('eval "echo \'hi\';"'); | ||
$I->seeShellOutputMatches( '/\w+/' ); | ||
} | ||
|
||
public function it_should_see_correct_result_code(Tester $I) | ||
{ | ||
$I->cli('eval "echo \'hi\';"'); | ||
$I->seeResultCodeIs(0); | ||
} | ||
|
||
public function it_should_not_see_correct_result_code(Tester $I) | ||
{ | ||
$I->cli('eval "echo \'hi\';"'); | ||
$I->seeResultCodeIsNot(1); | ||
} | ||
} |