mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-28 18:20:06 +00:00
16 lines
379 B
PHP
16 lines
379 B
PHP
|
<?php
|
||
|
|
||
|
class Scribunto_LuaStandaloneTests extends Scribunto_LuaEngineTestBase {
|
||
|
protected static $moduleName = 'StandaloneTests';
|
||
|
|
||
|
public static function suite( $className ) {
|
||
|
return self::makeSuite( $className, 'LuaStandalone' );
|
||
|
}
|
||
|
|
||
|
function getTestModules() {
|
||
|
return parent::getTestModules() + array(
|
||
|
'StandaloneTests' => __DIR__ . '/StandaloneTests.lua',
|
||
|
);
|
||
|
}
|
||
|
}
|