summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Scribunto/tests/phpunit/engines/LuaCommon/HashLibraryTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/Scribunto/tests/phpunit/engines/LuaCommon/HashLibraryTest.php')
-rw-r--r--www/wiki/extensions/Scribunto/tests/phpunit/engines/LuaCommon/HashLibraryTest.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/www/wiki/extensions/Scribunto/tests/phpunit/engines/LuaCommon/HashLibraryTest.php b/www/wiki/extensions/Scribunto/tests/phpunit/engines/LuaCommon/HashLibraryTest.php
new file mode 100644
index 00000000..edb543c7
--- /dev/null
+++ b/www/wiki/extensions/Scribunto/tests/phpunit/engines/LuaCommon/HashLibraryTest.php
@@ -0,0 +1,13 @@
+<?php
+
+// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
+class Scribunto_LuaHashLibraryTest extends Scribunto_LuaEngineTestBase {
+ protected static $moduleName = 'HashLibraryTests';
+
+ protected function getTestModules() {
+ return parent::getTestModules() + [
+ 'HashLibraryTests' => __DIR__ . '/HashLibraryTests.lua',
+ ];
+ }
+
+}