mediawiki-extensions-Scribunto/tests/phpunit/engines/LuaStandalone/StandaloneTest.php
Reedy c479ad6f86 Namespace LuaStandalone engine
Change-Id: I7d3f77a56c8b74e0481197224006f19ff4c9d108
2022-08-03 06:03:48 +00:00

29 lines
764 B
PHP

<?php
class LuaStandaloneTest extends Scribunto_LuaEngineUnitTestBase {
/** @inheritDoc */
protected static $moduleName = 'StandaloneTests';
public static function suite( $className ) {
return self::makeSuite( $className, 'LuaStandalone' );
}
protected function setUp(): void {
parent::setUp();
$interpreter = $this->getEngine()->getInterpreter();
$func = $interpreter->wrapPhpFunction( static 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',
];
}
}