mediawiki-extensions-Scribunto/tests/phpunit/engines/LuaStandalone/StandaloneTest.php
libraryupgrader 29f4c03de1 build: Updating dependencies
composer:
* mediawiki/mediawiki-codesniffer: 36.0.0 → 37.0.0

npm:
* postcss: 7.0.35 → 7.0.36
  * https://npmjs.com/advisories/1693 (CVE-2021-23368)
* glob-parent: 5.1.0 → 5.1.2
  * https://npmjs.com/advisories/1751 (CVE-2020-28469)
* trim-newlines: 3.0.0 → 3.0.1
  * https://npmjs.com/advisories/1753 (CVE-2021-33623)

Change-Id: If0310d25d0380a6d4e936e666729e6a65a90a710
2021-07-23 21:34:32 +00:00

29 lines
774 B
PHP

<?php
class Scribunto_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',
];
}
}