Skip to content

Commit cfc576e

Browse files
authored
Update PresentersTest.php
1 parent c9daf61 commit cfc576e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/PresentersTest.php

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616
->assertExitCode(0);
1717
})->group('Presenter Command');
1818

19+
20+
it('can create new presenter class with the alias command', function () {
21+
$this->artisan('make:presenter UserPresenter')
22+
->assertExitCode(0);
23+
})->group('Presenter Command');
24+
1925
it('presents user full name', function () {
2026
$user = new User([
2127
'first_name' => 'John',

0 commit comments

Comments
 (0)