fix: update installer module test to expect 7 actions including CertificateGet

This commit is contained in:
Jake Barnby
2026-03-24 17:57:58 +13:00
parent e58f0b6378
commit a1441174f2
@@ -41,13 +41,14 @@ class ModuleTest extends TestCase
$service = reset($services);
$actions = $service->getActions();
$this->assertCount(6, $actions);
$this->assertCount(7, $actions);
$this->assertArrayHasKey('installerView', $actions);
$this->assertArrayHasKey('installerStatus', $actions);
$this->assertArrayHasKey('installerValidate', $actions);
$this->assertArrayHasKey('installerComplete', $actions);
$this->assertArrayHasKey('installerShutdown', $actions);
$this->assertArrayHasKey('installerInstall', $actions);
$this->assertArrayHasKey('installerCertificateGet', $actions);
}
public function testViewAction(): void