mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-11 07:56:10 +00:00
44fe3df9bf
Change-Id: I510e5516d56b28d26510423da840b4b496a10833
14 lines
353 B
PHP
14 lines
353 B
PHP
<?php
|
|
|
|
// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
|
|
class Scribunto_LuaHashLibraryTest extends Scribunto_LuaEngineTestBase {
|
|
protected static $moduleName = 'HashLibraryTests';
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + [
|
|
'HashLibraryTests' => __DIR__ . '/HashLibraryTests.lua',
|
|
];
|
|
}
|
|
|
|
}
|