Skip to content

Commit

Permalink
ITT: Ability to use file path - readme info added.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-ivanov committed Dec 22, 2016
1 parent 4d03094 commit 948d160
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,12 @@ Checks if specified string is seen as artisan output:
$this->seeArtisanOutput('Hello, World!');
```
Also, path to text file containing output can be provided:
```php
$this->seeArtisanOutput('correct.output.txt');
```
#### `dontSeeArtisanOutput()`
Checks if specified string is not seen as artisan output:
Expand All @@ -161,6 +167,12 @@ Checks if specified string is not seen as artisan output:
$this->dontSeeArtisanOutput('Hello, Universe!');
```
Also, path to text file containing output can be provided:
```php
$this->dontSeeArtisanOutput('incorrect.output.txt');
```
#### `seeArtisanTableOutput()`
Checks if specified data is seen as artisan table output:
Expand Down

0 comments on commit 948d160

Please sign in to comment.