mediawiki-extensions-Scribunto/tests/phpunit/Engines/LuaCommon/SiteLibraryTest.php
Reedy 408f4d0bc6 Namespace tests
Change-Id: I4977bf534400643f83ab3400c3dfd736c53f9705
2022-09-30 00:59:00 +00:00

15 lines
347 B
PHP

<?php
namespace MediaWiki\Extension\Scribunto\Tests\Engines\LuaCommon;
class SiteLibraryTest extends LuaEngineUnitTestBase {
/** @inheritDoc */
protected static $moduleName = 'SiteLibraryTests';
protected function getTestModules() {
return parent::getTestModules() + [
'SiteLibraryTests' => __DIR__ . '/SiteLibraryTests.lua',
];
}
}