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

17 lines
420 B
PHP

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