summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Scribunto/tests/phpunit/engines/LuaCommon/LibraryUtilTest.php
blob: cf8873923c17c9dcf433bc019cfd1f8fa87d7802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

// @codingStandardsIgnoreLine Squiz.Classes.ValidClassName.NotCamelCaps
class Scribunto_LuaLibraryUtilTest extends Scribunto_LuaEngineTestBase {
	protected static $moduleName = 'LibraryUtilTests';

	function getTestModules() {
		return parent::getTestModules() + [
			'LibraryUtilTests' => __DIR__ . '/LibraryUtilTests.lua',
		];
	}
}