mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-04 04:38:08 +00:00
44fe3df9bf
Change-Id: I510e5516d56b28d26510423da840b4b496a10833
13 lines
342 B
PHP
13 lines
342 B
PHP
<?php
|
|
|
|
// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
|
|
class Scribunto_LuaLibraryUtilTest extends Scribunto_LuaEngineTestBase {
|
|
protected static $moduleName = 'LibraryUtilTests';
|
|
|
|
function getTestModules() {
|
|
return parent::getTestModules() + [
|
|
'LibraryUtilTests' => __DIR__ . '/LibraryUtilTests.lua',
|
|
];
|
|
}
|
|
}
|