mediawiki-extensions-Scribunto/tests/phpunit/engines/LuaCommon/HtmlLibraryTest.php
Kunal Mehta f76ba3c465 Disable Squiz.Classes.ValidClassName.NotCamelCaps globally
Instead of per-file. This happens to also fix a false positive with the
PhpunitAnnotations sniff.

Change-Id: I22621c37217ed2db9d8b3591df1a1421c25fa7f6
2018-05-24 22:26:11 -07:00

26 lines
635 B
PHP

<?php
class Scribunto_LuaHtmlLibraryTest extends Scribunto_LuaEngineTestBase {
protected static $moduleName = 'HtmlLibraryTests';
protected function setUp() {
parent::setUp();
// For strip marker test
$markers = [
'nowiki' => Parser::MARKER_PREFIX . '-test-nowiki-' . Parser::MARKER_SUFFIX,
];
$interpreter = $this->getEngine()->getInterpreter();
$interpreter->callFunction(
$interpreter->loadString( 'mw.html.stripMarkers = ...', 'fortest' ),
$markers
);
}
protected function getTestModules() {
return parent::getTestModules() + [
'HtmlLibraryTests' => __DIR__ . '/HtmlLibraryTests.lua',
];
}
}