mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-11 16:06:02 +00:00
19 lines
366 B
PHP
19 lines
366 B
PHP
|
<?php
|
||
|
|
||
|
class Scribunto_LuaCommonTestsLibrary extends Scribunto_LuaLibraryBase {
|
||
|
public function register() {
|
||
|
$lib = [
|
||
|
'test' => [ $this, 'test' ],
|
||
|
];
|
||
|
$opts = [
|
||
|
'test' => 'Test option',
|
||
|
];
|
||
|
|
||
|
return $this->getEngine()->registerInterface( __DIR__ . '/CommonTests-lib.lua', $lib, $opts );
|
||
|
}
|
||
|
|
||
|
public function test() {
|
||
|
return [ 'Test function' ];
|
||
|
}
|
||
|
}
|