mediawiki-extensions-Scribunto/tests/phpunit/Engines/LuaCommon/HashLibraryTest.php

16 lines
348 B
PHP
Raw Normal View History

<?php
namespace MediaWiki\Extension\Scribunto\Tests\Engines\LuaCommon;
class HashLibraryTest extends LuaEngineUnitTestBase {
/** @inheritDoc */
protected static $moduleName = 'HashLibraryTests';
protected function getTestModules() {
return parent::getTestModules() + [
'HashLibraryTests' => __DIR__ . '/HashLibraryTests.lua',
];
}
}