summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Scribunto/tests/phpunit/engines/LuaCommon/UriLibraryTest.php
diff options
context:
space:
mode:
authorYaco <franco@reevo.org>2021-10-19 20:30:39 -0300
committerYaco <franco@reevo.org>2021-10-19 20:30:39 -0300
commit8c201ace3699b4928daf41eb7b4cdcb4565c6f3b (patch)
treefbd98f026864e9c1919d3ee740b6799ca0c651e2 /www/wiki/extensions/Scribunto/tests/phpunit/engines/LuaCommon/UriLibraryTest.php
parente3880a1c86acaa3bbd05786ad2f5c586e6511a58 (diff)
adds Scribunto
Diffstat (limited to 'www/wiki/extensions/Scribunto/tests/phpunit/engines/LuaCommon/UriLibraryTest.php')
-rw-r--r--www/wiki/extensions/Scribunto/tests/phpunit/engines/LuaCommon/UriLibraryTest.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/www/wiki/extensions/Scribunto/tests/phpunit/engines/LuaCommon/UriLibraryTest.php b/www/wiki/extensions/Scribunto/tests/phpunit/engines/LuaCommon/UriLibraryTest.php
new file mode 100644
index 00000000..80137c84
--- /dev/null
+++ b/www/wiki/extensions/Scribunto/tests/phpunit/engines/LuaCommon/UriLibraryTest.php
@@ -0,0 +1,26 @@
+<?php
+
+// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
+class Scribunto_LuaUriLibraryTest extends Scribunto_LuaEngineTestBase {
+ protected static $moduleName = 'UriLibraryTests';
+
+ protected function setUp() {
+ parent::setUp();
+
+ $this->setMwGlobals( [
+ 'wgServer' => '//wiki.local',
+ 'wgCanonicalServer' => 'http://wiki.local',
+ 'wgUsePathInfo' => true,
+ 'wgActionPaths' => [],
+ 'wgScript' => '/w/index.php',
+ 'wgScriptPath' => '/w',
+ 'wgArticlePath' => '/wiki/$1',
+ ] );
+ }
+
+ protected function getTestModules() {
+ return parent::getTestModules() + [
+ 'UriLibraryTests' => __DIR__ . '/UriLibraryTests.lua',
+ ];
+ }
+}