mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-03 04:16:19 +00:00
f76ba3c465
Instead of per-file. This happens to also fix a false positive with the PhpunitAnnotations sniff. Change-Id: I22621c37217ed2db9d8b3591df1a1421c25fa7f6
12 lines
270 B
PHP
12 lines
270 B
PHP
<?php
|
|
|
|
class Scribunto_LuaLibraryUtilTest extends Scribunto_LuaEngineTestBase {
|
|
protected static $moduleName = 'LibraryUtilTests';
|
|
|
|
function getTestModules() {
|
|
return parent::getTestModules() + [
|
|
'LibraryUtilTests' => __DIR__ . '/LibraryUtilTests.lua',
|
|
];
|
|
}
|
|
}
|