From 9086e5dba7fe06ec4e62e3284d79aa8da85c1730 Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Thu, 10 Apr 2025 13:03:50 -0700 Subject: [PATCH] Scaffold some asset importer tests --- tests/Unit/Importer/AssetImportTest.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tests/Unit/Importer/AssetImportTest.php diff --git a/tests/Unit/Importer/AssetImportTest.php b/tests/Unit/Importer/AssetImportTest.php new file mode 100644 index 000000000..9a8ec0a5d --- /dev/null +++ b/tests/Unit/Importer/AssetImportTest.php @@ -0,0 +1,23 @@ +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(); + } +}