mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-19 11:21:48 +00:00
1eecdac6de
Change-Id: I6d730d67decc859fd130fee5ec92b1cfb8d9ef64
14 lines
282 B
PHP
14 lines
282 B
PHP
<?php
|
|
|
|
class HashLibraryTest extends LuaEngineUnitTestBase {
|
|
/** @inheritDoc */
|
|
protected static $moduleName = 'HashLibraryTests';
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + [
|
|
'HashLibraryTests' => __DIR__ . '/HashLibraryTests.lua',
|
|
];
|
|
}
|
|
|
|
}
|