summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Scribunto/tests/phpunit/engines/LuaCommon/HtmlLibraryTest.php
blob: 98536c188efc8b1ce18268c4674e296f36befc14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php

// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
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',
		];
	}
}