mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-19 11:21:48 +00:00
408f4d0bc6
Change-Id: I4977bf534400643f83ab3400c3dfd736c53f9705
16 lines
348 B
PHP
16 lines
348 B
PHP
<?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',
|
|
];
|
|
}
|
|
|
|
}
|