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

19 lines
428 B
PHP
Raw Normal View History

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