mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-11 16:06:02 +00:00
248dcae392
And use the unit test base on most of the tests, except the ones that need database. This makes tests considerably faster. Bug: T230701 Change-Id: Ifbede1e2610c672b4d8a83ce41f74200e0c97be9
12 lines
284 B
PHP
12 lines
284 B
PHP
<?php
|
|
|
|
class Scribunto_LuaSiteLibraryTest extends Scribunto_LuaEngineUnitTestBase {
|
|
protected static $moduleName = 'SiteLibraryTests';
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + [
|
|
'SiteLibraryTests' => __DIR__ . '/SiteLibraryTests.lua',
|
|
];
|
|
}
|
|
}
|