mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-15 03:35:29 +00:00
bd03237246
Contains various constants and functions to access site info. Change-Id: I944938f9af0203c16d1a3fb2046f332045dec4d9
12 lines
276 B
PHP
12 lines
276 B
PHP
<?php
|
|
|
|
class Scribunto_LuaSiteLibraryTests extends Scribunto_LuaEngineTestBase {
|
|
protected static $moduleName = 'SiteLibraryTests';
|
|
|
|
function getTestModules() {
|
|
return parent::getTestModules() + array(
|
|
'SiteLibraryTests' => __DIR__ . '/SiteLibraryTests.lua',
|
|
);
|
|
}
|
|
}
|