mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 05:02:21 +00:00
17 lines
420 B
PHP
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);
|
|
}
|
|
}
|