From 89cfafd933ec24917fbab85559ea237b824a9d6e Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Wed, 17 Sep 2025 13:40:34 -0700 Subject: [PATCH] Scaffold test --- .../Checkouts/Ui/BulkAssetCheckoutTest.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/tests/Feature/Checkouts/Ui/BulkAssetCheckoutTest.php b/tests/Feature/Checkouts/Ui/BulkAssetCheckoutTest.php index f05c4389e6..433f89d040 100644 --- a/tests/Feature/Checkouts/Ui/BulkAssetCheckoutTest.php +++ b/tests/Feature/Checkouts/Ui/BulkAssetCheckoutTest.php @@ -89,4 +89,21 @@ class BulkAssetCheckoutTest extends TestCase $this->fail('Asset checkout email was sent when the entire checkout failed.'); } } + + public function test_adheres_to_full_multiple_company_support() + { + $this->markTestIncomplete(); + + // create two companies + + // create an asset for each company + + // create a user for one company + + // create a super admin and act as them + + // attempt to bulk checkout both items to the user in the company + + // ensure bulk checkout is blocked + } }