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

21 lines
420 B
PHP

<?php
namespace Tests\Unit\Commands;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;
class WaitForDbTest extends TestCase
{
use DatabaseTransactions;
#[Test]
public function it_run_WaitForDb_command(): void
{
$this->artisan('waitfordb')
->expectsOutput('Database ready.')
->assertExitCode(0);
}
}