mediawiki-extensions-Scribunto/tests/phpunit/engines/LuaCommon/HashLibraryTest.php
Kunal Mehta 31820c673a Move tests into tests/phpunit and remove UnitTestsList hook
This takes advantage of extension.json's unit tests autodiscovery
mechanism.

Bug: T142120
Change-Id: Id526f3368fc73ba7e6ef1d793ea70ab05fbd9517
2017-07-07 13:50:39 -07:00

14 lines
354 B
PHP

<?php
// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
class Scribunto_LuaHashLibraryTests extends Scribunto_LuaEngineTestBase {
protected static $moduleName = 'HashLibraryTests';
protected function getTestModules() {
return parent::getTestModules() + [
'HashLibraryTests' => __DIR__ . '/HashLibraryTests.lua',
];
}
}