Skip to content

Commit

Permalink
Add incomplete tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Feb 9, 2024
1 parent 34e4f7b commit 7d306ea
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion tests/TestCase/Command/StatusCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function testHelp(): void
$this->assertOutputContains('migrations status -c secondary');
}

public function testExecuteNoMigrations(): void
public function testExecuteSimple(): void
{
$this->exec('migrations status -c test');
$this->assertExitSuccess();
Expand All @@ -34,4 +34,24 @@ public function testExecuteNoMigrations(): void
$this->assertOutputContains('Migration ID');
$this->assertOutputContains('Migration Name');
}

public function testExecuteSimpleJson(): void
{
$this->markTestIncomplete();
}

public function testExecutePlugin(): void
{
$this->markTestIncomplete();
}

public function testExecutePluginDoesNotExist(): void
{
$this->markTestIncomplete();
}

public function testExecuteConnectionDoesNotExist(): void
{
$this->markTestIncomplete();
}
}

0 comments on commit 7d306ea

Please sign in to comment.