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