Skip to content

Commit 3294cd5

Browse files
committed
ITT: Laravel 5.1+ support.
1 parent 578aaac commit 3294cd5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ Provides Laravel-specific testing helpers and asserts.
4242
3. That's it! Now you can use any of provided helpers and asserts in your tests:
4343
4444
```php
45-
class HomePageTest extends TestCase
45+
class HelloCommandTest extends TestCase
4646
{
4747
/** @test */
48-
public function it_shows_three_featured_products()
48+
public function it_outputs_hello_world()
4949
{
50-
$this->visit('/');
50+
$this->artisan('hello');
5151
52-
$this->seeElementTimes('.featured-product', 3);
52+
$this->seeArtisanOutput('Hello, World!');
5353
}
5454
}
5555
```

0 commit comments

Comments
 (0)