We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e2daca commit 035964dCopy full SHA for 035964d
tests/Feature/Console/RepositoryTest.php
@@ -14,18 +14,15 @@ public function test_it_can_generate_repository_command()
14
{
15
$this->artisan('make:repository', [
16
'name' => 'LogsRepository'
17
- ])
18
- ->expectsOutput('Repository created successfully.')
19
- ->assertExitCode(0);
+ ])->assertExitCode(0);
20
}
21
22
public function test_it_can_generate_model_repository_command()
23
24
25
'name' => 'UserRepository',
26
- '--model' => 'PPSpaces\Tests\App\User'
27
28
29
+ '--model' => 'PPSpaces/Tests/App/User',
+ '--no-interaction'
30
31
0 commit comments