mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-29 02:24:19 +00:00
31820c673a
This takes advantage of extension.json's unit tests autodiscovery mechanism. Bug: T142120 Change-Id: Id526f3368fc73ba7e6ef1d793ea70ab05fbd9517
13 lines
365 B
PHP
13 lines
365 B
PHP
<?php
|
|
|
|
// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
|
|
class Scribunto_LuaMessageLibraryTests extends Scribunto_LuaEngineTestBase {
|
|
protected static $moduleName = 'MessageLibraryTests';
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + [
|
|
'MessageLibraryTests' => __DIR__ . '/MessageLibraryTests.lua',
|
|
];
|
|
}
|
|
}
|