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 a70fc62 commit ab25668Copy full SHA for ab25668
tests/Commands/MigrateTest.php
@@ -26,16 +26,19 @@ public function testEveryTimeExecution()
26
{
27
$table = 'every_time';
28
29
- $this->artisan('migrate:actions:install')->run();
30
$this->artisan('migrate')->run();
+ $this->artisan('migrate:actions:install')->run();
31
32
$this->assertDatabaseCount($table, 0);
33
+ $this->assertDatabaseCount($this->table, 0);
34
$this->artisan('migrate:actions')->run();
35
36
$this->assertDatabaseCount($table, 1);
37
+ $this->assertDatabaseCount($this->table, 1);
38
39
40
$this->assertDatabaseCount($table, 2);
41
42
}
43
44
public function testMigrationNotFound()
0 commit comments