mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/LoginNotify
synced 2024-12-03 19:16:10 +00:00
222b7475fb
Only core hooks are run, but own HookRunner is recommended Bug: T263353 Change-Id: I2506f4af21ef955a7feeb145d5173f46ca11b334
17 lines
335 B
PHP
17 lines
335 B
PHP
<?php
|
|
|
|
namespace LoginNotify\Tests\Unit;
|
|
|
|
use LoginNotify\Hooks\HookRunner;
|
|
use MediaWiki\Tests\HookContainer\HookRunnerTestBase;
|
|
|
|
/**
|
|
* @covers \LoginNotify\Hooks\HookRunner
|
|
*/
|
|
class HookRunnerTest extends HookRunnerTestBase {
|
|
|
|
public static function provideHookRunners() {
|
|
yield HookRunner::class => [ HookRunner::class ];
|
|
}
|
|
}
|