xref: /dokuwiki/_test/tests/inc/PluginUtils.test.php (revision 0a1129f78af446cb132947f286370fd45c05e605)
1<?php
2
3class PluginUtilsTest extends DokuWikiTest
4{
5    /**
6     * @covers ::plugin_list()
7     */
8    public function test_cache_cleaning_cleanToUnclean()
9    {
10        $expectedListOfPlugins = [
11            'acl',
12            'authplain',
13            'config',
14            'info',
15            'popularity',
16            'revert',
17            'safefnrecode',
18            'usermanager',
19        ];
20
21        $this->assertEquals($expectedListOfPlugins, plugin_list());
22    }
23}
24