mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-15 03:35:29 +00:00
ac62e34952
A module for building complex HTML from Lua using a fluent interface. The module is originally from enwiki, but the authors allowed us to reuse it under GPLv2+ (as stated in the file). The module will be loaded per default and comes with unit tests. As discussed on wikitech-l: http://lists.wikimedia.org/pipermail/wikitech-l/2013-December/073320.html Change-Id: I7c8d4378091c13d5ace0dd1fcbb4e27163e8c896
12 lines
276 B
PHP
12 lines
276 B
PHP
<?php
|
|
|
|
class Scribunto_LuaHtmlLibraryTests extends Scribunto_LuaEngineTestBase {
|
|
protected static $moduleName = 'HtmlLibraryTests';
|
|
|
|
function getTestModules() {
|
|
return parent::getTestModules() + array(
|
|
'HtmlLibraryTests' => __DIR__ . '/HtmlLibraryTests.lua',
|
|
);
|
|
}
|
|
}
|