agent/php/tests/Feature/AgenticGenerateCommandTest.php
Snider ecd47fe3db revert fcb9c189e5
revert fix(agentic): harden TODO workspace write

Co-Authored-By: Virgil <virgil@lethean.io>
2026-04-18 11:22:27 +00:00

21 lines
466 B
PHP

<?php
// SPDX-License-Identifier: EUPL-1.2
declare(strict_types=1);
namespace Core\Mod\Agentic\Tests\Feature;
use Tests\TestCase;
class AgenticGenerateCommandTest extends TestCase
{
public function test_it_registers_the_canonical_agentic_generate_command(): void
{
$this->artisan('help', [
'command' => 'agentic:generate',
])
->expectsOutputToContain('agentic:generate')
->assertSuccessful();
}
}