chore: prepare for PR

This commit is contained in:
Andras Bacsai
2026-02-23 14:15:13 +01:00
parent d71d91d63e
commit 620da191b1
2 changed files with 12 additions and 1 deletions
@@ -0,0 +1,11 @@
<?php
use App\Models\Application;
it('treats zero private key id as deploy key', function () {
$application = new Application();
$application->private_key_id = 0;
$application->source = null;
expect($application->deploymentType())->toBe('deploy_key');
});