mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-18 19:02:27 +00:00
69ed697681
Bug: T320330 Change-Id: I3456453226faa3ba68be4deca764839ea0f54539
18 lines
442 B
PHP
18 lines
442 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Scribunto\Tests\Engines\LuaCommon;
|
|
|
|
/**
|
|
* @covers \MediaWiki\Extension\Scribunto\Engines\LuaCommon\MessageLibrary
|
|
*/
|
|
class MessageLibraryTest extends LuaEngineUnitTestBase {
|
|
/** @inheritDoc */
|
|
protected static $moduleName = 'MessageLibraryTests';
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + [
|
|
'MessageLibraryTests' => __DIR__ . '/MessageLibraryTests.lua',
|
|
];
|
|
}
|
|
}
|