mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-11 07:56:10 +00:00
f129988d82
Change-Id: I81e957035175f9fe0dad9494c92ab342283df983
13 lines
316 B
PHP
13 lines
316 B
PHP
<?php
|
|
|
|
class Scribunto_LuaMessageLibraryTest extends Scribunto_LuaEngineUnitTestBase {
|
|
/** @inheritDoc */
|
|
protected static $moduleName = 'MessageLibraryTests';
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + [
|
|
'MessageLibraryTests' => __DIR__ . '/MessageLibraryTests.lua',
|
|
];
|
|
}
|
|
}
|