for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SMW\Scribunto\Tests;
/**
* @covers \SMW\Scribunto\ScribuntoLuaLibrary
* @group semantic-scribunto
*
* @license GNU GPL v2+
* @since 1.0
* @author oetterer
*/
class ScribuntoLuaLibraryInfoTest extends ScribuntoLuaEngineTestBase {
* Lua test module
* @var string
protected static $moduleName = self::class;
* ScribuntoLuaEngineTestBase::getTestModules
public function getTestModules() {
return parent::getTestModules() + array(
self::$moduleName => __DIR__ . '/' . 'mw.smw.info.tests.lua',
);
}