mediawiki-extensions-Cite/tests/phpunit/unit/CiteHooksUnitTest.php

28 lines
567 B
PHP
Raw Normal View History

<?php
namespace Cite\Tests\Unit;
use Cite\Hooks\CiteHooks;
use Title;
/**
* @covers \Cite\Hooks\CiteHooks
*
* @license GPL-2.0-or-later
*/
class CiteHooksUnitTest extends \MediaWikiUnitTestCase {
public function testOnContentHandlerDefaultModelFor() {
$title = $this->createMock( Title::class );
$title->method( 'inNamespace' )
->willReturn( true );
$title->method( 'getText' )
->willReturn( 'Cite-tool-definition.json' );
CiteHooks::onContentHandlerDefaultModelFor( $title, $model );
$this->assertSame( CONTENT_MODEL_JSON, $model );
}
}