Scaffold some asset importer tests
This commit is contained in:
parent
1b7486c342
commit
9086e5dba7
1 changed files with 23 additions and 0 deletions
23
tests/Unit/Importer/AssetImportTest.php
Normal file
23
tests/Unit/Importer/AssetImportTest.php
Normal 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();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue