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