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 8324201 commit 1beec0fCopy full SHA for 1beec0f
tests/Feature/Console/RepositoryTest.php
@@ -16,17 +16,4 @@ public function test_it_can_generate_repository_command()
16
'name' => 'LogsRepository'
17
])->assertExitCode(0);
18
}
19
-
20
- public function test_it_can_generate_model_repository_command()
21
- {
22
- $this->artisan('make:repository', [
23
- 'name' => 'UserRepository',
24
- '--model' => 'User',
25
- '--no-interaction'
26
- ])
27
- // ->expectsQuestion('A App\User model does not exist. Do you want to generate it? (yes/no)', 'yes')
28
- // ->expectsOutput('Model created successfully.')
29
- // ->expectsOutput('Repository created successfully.')
30
- ->assertExitCode(0);
31
- }
32
0 commit comments