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 9bf146c commit 791594bCopy full SHA for 791594b
tests/MigrationCommandTest.php
@@ -11,9 +11,9 @@ public function generate_migration()
11
$this->assertFileExists('app/Models/User.php');
12
$this->assertFileExists('database/migrations/'. date('Y_m_d_His') .'_create_users_table.php');
13
14
- $this->artisan('generate:migration create_posts_table');
15
- $this->assertFileExists('app/Models/Post.php');
16
- $this->assertFileExists('database/migrations/'. date('Y_m_d_His') .'_create_posts_table.php');
+ $this->artisan('generate:migration create_user_comments_table');
+ $this->assertFileExists('app/Models/UserComment.php');
+ $this->assertFileExists('database/migrations/'. date('Y_m_d_His') .'_create_user_comments_table.php');
17
}
18
19
/** @test */
0 commit comments