[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/_test/tests/inc/ -> PluginUtils.test.php (source)

   1  <?php
   2  
   3  class 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  }