mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-15 03:35:29 +00:00
61af67b819
Required for Idf44d31. Change-Id: If6d270549290bed2d1c7617da0fedbd385f3e96c
12 lines
286 B
PHP
12 lines
286 B
PHP
<?php
|
|
|
|
class Scribunto_LuaSiteLibraryTests extends Scribunto_LuaEngineTestBase {
|
|
protected static $moduleName = 'SiteLibraryTests';
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + array(
|
|
'SiteLibraryTests' => __DIR__ . '/SiteLibraryTests.lua',
|
|
);
|
|
}
|
|
}
|