mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-24 08:14:09 +00:00
61af67b819
Required for Idf44d31. Change-Id: If6d270549290bed2d1c7617da0fedbd385f3e96c
12 lines
286 B
PHP
12 lines
286 B
PHP
<?php
|
|
|
|
class Scribunto_LuaHtmlLibraryTests extends Scribunto_LuaEngineTestBase {
|
|
protected static $moduleName = 'HtmlLibraryTests';
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + array(
|
|
'HtmlLibraryTests' => __DIR__ . '/HtmlLibraryTests.lua',
|
|
);
|
|
}
|
|
}
|