mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-28 02:00:01 +00:00
e55c5ee946
Replace deprecated $parser->uniqPrefix() with Parser::MARKER_PREFIX. Change-Id: I53721e1aa9022ad6bbfdb08b1a07feac81806514
30 lines
902 B
PHP
30 lines
902 B
PHP
<?php
|
|
|
|
class Scribunto_LuaTextLibraryTests extends Scribunto_LuaEngineTestBase {
|
|
protected static $moduleName = 'TextLibraryTests';
|
|
|
|
protected function setUp() {
|
|
parent::setUp();
|
|
|
|
// For unstrip test
|
|
$parser = $this->getEngine()->getParser();
|
|
$markers = array(
|
|
'nowiki' => Parser::MARKER_PREFIX . '-test-nowiki-' . Parser::MARKER_SUFFIX,
|
|
'general' => Parser::MARKER_PREFIX . '-test-general-' . Parser::MARKER_SUFFIX,
|
|
);
|
|
$parser->mStripState->addNoWiki( $markers['nowiki'], 'NoWiki' );
|
|
$parser->mStripState->addGeneral( $markers['general'], 'General' );
|
|
$interpreter = $this->getEngine()->getInterpreter();
|
|
$interpreter->callFunction(
|
|
$interpreter->loadString( 'mw.text.stripTest = ...', 'fortest' ),
|
|
$markers
|
|
);
|
|
}
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + array(
|
|
'TextLibraryTests' => __DIR__ . '/TextLibraryTests.lua',
|
|
);
|
|
}
|
|
}
|