mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-19 11:21:48 +00:00
073a365759
Revert "Revert "Namespace LuaCommon""
This reverts commit 18d122b60d
.
Change-Id: I74fd43f7920c8772e9078f745ac6062d5461a7f1
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',
|
|
];
|
|
}
|
|
|
|
}
|