mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-03 20:36:18 +00:00
7a7f522676
Bug: T209232 Change-Id: I84a4ec014875764bcba4d603b0e27d210d4a9308
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',
|
|
];
|
|
}
|
|
}
|