mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-04 04:38:08 +00:00
44fe3df9bf
Change-Id: I510e5516d56b28d26510423da840b4b496a10833
13 lines
352 B
PHP
13 lines
352 B
PHP
<?php
|
|
|
|
// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
|
|
class Scribunto_LuaSiteLibraryTest extends Scribunto_LuaEngineTestBase {
|
|
protected static $moduleName = 'SiteLibraryTests';
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + [
|
|
'SiteLibraryTests' => __DIR__ . '/SiteLibraryTests.lua',
|
|
];
|
|
}
|
|
}
|