Skip to content

Commit 91d92b7

Browse files
committed
disbale module system test
1 parent fa14d22 commit 91d92b7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/Feature/ModuleSystemTest.php renamed to tests/Feature/ModuleSystemTest.php.disabled

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,22 @@ protected function setUp(): void
1919
}
2020

2121
/** @test */
22-
public function it_can_list_all_modules()
22+
public function test_it_can_list_all_modules()
2323
{
2424
$modules = $this->moduleManager->all();
2525
$this->assertNotEmpty($modules);
2626
}
2727

2828
/** @test */
29-
public function it_can_get_module_by_name()
29+
public function test_it_can_get_module_by_name()
3030
{
3131
$module = $this->moduleManager->get('BlogModule');
3232
$this->assertNotNull($module);
3333
$this->assertEquals('BlogModule', $module->getName());
3434
}
3535

3636
/** @test */
37-
public function it_can_enable_and_disable_modules()
37+
public function test_it_can_enable_and_disable_modules()
3838
{
3939
$moduleName = 'BlogModule';
4040

@@ -54,7 +54,7 @@ public function it_can_enable_and_disable_modules()
5454
}
5555

5656
/** @test */
57-
public function it_can_get_module_info()
57+
public function test_it_can_get_module_info()
5858
{
5959
$info = $this->moduleManager->getModuleInfo('BlogModule');
6060

@@ -65,7 +65,7 @@ public function it_can_get_module_info()
6565
}
6666

6767
/** @test */
68-
public function it_can_install_and_uninstall_modules()
68+
public function test_it_can_install_and_uninstall_modules()
6969
{
7070
$moduleName = 'BlogModule';
7171

@@ -85,7 +85,7 @@ public function it_can_install_and_uninstall_modules()
8585
}
8686

8787
/** @test */
88-
public function it_returns_false_for_non_existent_modules()
88+
public function test_it_returns_false_for_non_existent_modules()
8989
{
9090
$result = $this->moduleManager->enable('NonExistentModule');
9191
$this->assertFalse($result);

0 commit comments

Comments
 (0)