mediawiki-extensions-Scribunto/tests/phpunit/engines/LuaCommon/SiteLibraryTest.php
Umherirrender 44fe3df9bf Rename test classes to end with Test
Change-Id: I510e5516d56b28d26510423da840b4b496a10833
2018-03-10 14:25:38 +01:00

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',
];
}
}