Files
fotospiel-app/tests/Unit/PackageResourceFeatureLabelTest.php
Codex Agent 36bed12ff9
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled
feat: implement AI styling foundation and billing scope rework
2026-02-06 20:01:58 +01:00

17 lines
418 B
PHP

<?php
namespace Tests\Unit;
use App\Filament\Resources\PackageResource;
use Tests\TestCase;
class PackageResourceFeatureLabelTest extends TestCase
{
public function test_it_formats_ai_styling_feature_label_for_display(): void
{
$formatted = PackageResource::formatFeaturesForDisplay(['ai_styling', 'custom_branding']);
$this->assertSame('AI-Styling, Eigenes Branding', $formatted);
}
}