mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-26 17:20:07 +00:00
12 lines
288 B
PHP
12 lines
288 B
PHP
|
<?php
|
||
|
|
||
|
class Scribunto_LuaMessageLibraryTests extends Scribunto_LuaEngineTestBase {
|
||
|
protected static $moduleName = 'MessageLibraryTests';
|
||
|
|
||
|
function getTestModules() {
|
||
|
return parent::getTestModules() + array(
|
||
|
'MessageLibraryTests' => __DIR__ . '/MessageLibraryTests.lua',
|
||
|
);
|
||
|
}
|
||
|
}
|