24 lines
521 B
PHP
24 lines
521 B
PHP
<?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();
|
|
}
|
|
}
|