mediawiki-extensions-Scribunto/tests/phpunit/engines/LuaCommon/SecurityTest.php
Mogmog123 7a7f522676 Adding a unit test for CVE-2014-5461 in Scribunto.
Bug: T209232
Change-Id: I84a4ec014875764bcba4d603b0e27d210d4a9308
2018-11-26 20:36:45 +00:00

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',
];
}
}