mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-25 00:26:44 +00:00
4abed1d7c7
Done by phpcbf over composer fix Change-Id: I9b7419e025ef499ff68be79789d76ad4b886d256
29 lines
810 B
PHP
29 lines
810 B
PHP
<?php
|
|
|
|
// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
|
|
class Scribunto_LuaStandaloneTests extends Scribunto_LuaEngineTestBase {
|
|
protected static $moduleName = 'StandaloneTests';
|
|
|
|
public static function suite( $className ) {
|
|
return self::makeSuite( $className, 'LuaStandalone' );
|
|
}
|
|
|
|
protected function setUp() {
|
|
parent::setUp();
|
|
|
|
$interpreter = $this->getEngine()->getInterpreter();
|
|
$func = $interpreter->wrapPhpFunction( function ( $v ) {
|
|
return [ preg_replace( '/\s+/', ' ', trim( var_export( $v, 1 ) ) ) ];
|
|
} );
|
|
$interpreter->callFunction(
|
|
$interpreter->loadString( 'mw.var_export = ...', 'fortest' ), $func
|
|
);
|
|
}
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + [
|
|
'StandaloneTests' => __DIR__ . '/StandaloneTests.lua',
|
|
];
|
|
}
|
|
}
|