Files
newznab-tmux/tests/Feature/Console/NntmuxSearchDiagCommandTest.php
T
DariusIII 60c85e2e63 Add tests
2026-07-11 10:04:38 +02:00

17 lines
400 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Feature\Console;
final class NntmuxSearchDiagCommandTest extends SearchConsoleCommandTestCase
{
public function test_search_diag_exits_failure_when_driver_is_not_manticore(): void
{
config(['search.default' => 'elasticsearch']);
$this->artisan('nntmux:search-diag', ['ids' => ['1']])
->assertExitCode(1);
}
}