Files
monica/tests/Unit/Commands/WaitForDbTest.php
T

17 lines
306 B
PHP

<?php
namespace Tests\Unit\Commands;
use Tests\TestCase;
class WaitForDbTest extends TestCase
{
/** @test */
public function it_run_WaitForDb_command(): void
{
$this->artisan('monica:waitfordb')
->expectsOutput('Database ready.')
->assertExitCode(0);
}
}