mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-25 00:26:44 +00:00
4abed1d7c7
Done by phpcbf over composer fix Change-Id: I9b7419e025ef499ff68be79789d76ad4b886d256
13 lines
353 B
PHP
13 lines
353 B
PHP
<?php
|
|
|
|
// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
|
|
class Scribunto_LuaSiteLibraryTests extends Scribunto_LuaEngineTestBase {
|
|
protected static $moduleName = 'SiteLibraryTests';
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + [
|
|
'SiteLibraryTests' => __DIR__ . '/SiteLibraryTests.lua',
|
|
];
|
|
}
|
|
}
|