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