mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-12 08:25:10 +00:00
62e1fb0b5f
Change-Id: Ib6e912e71fb797942aca4b4f22eb0ff9e005a662
13 lines
281 B
PHP
13 lines
281 B
PHP
<?php
|
|
|
|
class LibraryUtilTest extends LuaEngineUnitTestBase {
|
|
/** @inheritDoc */
|
|
protected static $moduleName = 'LibraryUtilTests';
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + [
|
|
'LibraryUtilTests' => __DIR__ . '/LibraryUtilTests.lua',
|
|
];
|
|
}
|
|
}
|