mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-19 03:12:52 +00:00
1eecdac6de
Change-Id: I6d730d67decc859fd130fee5ec92b1cfb8d9ef64
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',
|
|
];
|
|
}
|
|
}
|