2014-07-10 11:02:39 +00:00
|
|
|
<?php
|
|
|
|
|
2022-07-30 22:43:58 +00:00
|
|
|
namespace MediaWiki\Extension\Scribunto\Tests\Engines\LuaCommon;
|
|
|
|
|
2022-08-03 12:31:15 +00:00
|
|
|
class LibraryUtilTest extends LuaEngineUnitTestBase {
|
2021-01-23 01:33:17 +00:00
|
|
|
/** @inheritDoc */
|
2014-07-10 11:02:39 +00:00
|
|
|
protected static $moduleName = 'LibraryUtilTests';
|
|
|
|
|
2018-11-09 19:31:08 +00:00
|
|
|
protected function getTestModules() {
|
2017-06-15 17:19:00 +00:00
|
|
|
return parent::getTestModules() + [
|
2014-07-10 11:02:39 +00:00
|
|
|
'LibraryUtilTests' => __DIR__ . '/LibraryUtilTests.lua',
|
2017-06-15 17:19:00 +00:00
|
|
|
];
|
2014-07-10 11:02:39 +00:00
|
|
|
}
|
|
|
|
}
|