mediawiki-extensions-Scribunto/tests/phpunit/engines/LuaCommon/TextLibraryTest.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

41 lines
1.2 KiB
PHP

<?php
class Scribunto_LuaTextLibraryTest extends Scribunto_LuaEngineTestBase {
protected static $moduleName = 'TextLibraryTests';
public function __construct(
$name = null, array $data = [], $dataName = '', $engineName = null
) {
parent::__construct( $name, $data, $dataName, $engineName );
if ( defined( 'HHVM_VERSION' ) ) {
// HHVM bug https://github.com/facebook/hhvm/issues/5813
$this->skipTests['json decode, invalid values (trailing comma)'] =
'json decode bug in HHVM';
}
}
protected function setUp() {
parent::setUp();
// For unstrip test
$parser = $this->getEngine()->getParser();
$markers = [
'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() + [
'TextLibraryTests' => __DIR__ . '/TextLibraryTests.lua',
];
}
}