mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-01 19:36:15 +00:00
14 lines
359 B
PHP
14 lines
359 B
PHP
|
<?php
|
||
|
|
||
|
// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
|
||
|
class Scribunto_LuaHashLibraryTests extends Scribunto_LuaEngineTestBase {
|
||
|
protected static $moduleName = 'HashLibraryTests';
|
||
|
|
||
|
protected function getTestModules() {
|
||
|
return parent::getTestModules() + array(
|
||
|
'HashLibraryTests' => __DIR__ . '/HashLibraryTests.lua',
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|