Scaffold some asset importer tests

This commit is contained in:
Marcus Moore 2025-04-10 13:03:50 -07:00
parent 1b7486c342
commit 9086e5dba7
No known key found for this signature in database

View file

@ -0,0 +1,23 @@
<?php
namespace Tests\Unit\Importer;
use Tests\TestCase;
class AssetImportTest extends TestCase
{
public function test_uses_first_deployable_status_label_as_default_if_one_exists()
{
$this->markTestIncomplete();
}
public function test_uses_first_status_label_as_default_if_deployable_status_label_does_not_exist()
{
$this->markTestIncomplete();
}
public function test_creates_default_status_label_if_one_does_not_exist()
{
$this->markTestIncomplete();
}
}