mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-04 04:38:08 +00:00
10 lines
266 B
PHP
10 lines
266 B
PHP
|
<?php
|
||
|
class Scribunto_LuaSecurityTest extends Scribunto_LuaEngineTestBase {
|
||
|
protected static $moduleName = 'SecurityTests';
|
||
|
protected function getTestModules() {
|
||
|
return parent::getTestModules() + [
|
||
|
'SecurityTests' => __DIR__ . '/SecurityTests.lua',
|
||
|
];
|
||
|
}
|
||
|
}
|