mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-26 01:05:22 +00:00
0f4db74148
Provides a simple wrapper for PHP's hash() and hash_algos() functions. I will add docs to the Lua reference manual once this is merged. Bug: T142585 Change-Id: I6697463974a175e99f9b77428a1085247165ebc9
14 lines
359 B
PHP
14 lines
359 B
PHP
<?php
|
|
|
|
// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
|
|
class Scribunto_LuaHashLibraryTests extends Scribunto_LuaEngineTestBase {
|
|
protected static $moduleName = 'HashLibraryTests';
|
|
|
|
protected function getTestModules() {
|
|
return parent::getTestModules() + array(
|
|
'HashLibraryTests' => __DIR__ . '/HashLibraryTests.lua',
|
|
);
|
|
}
|
|
|
|
}
|