Merge "Add tests for WikiMap and WikiReference"
[lhc/web/wiklou.git] / tests / phpunit / includes / content / TextContentHandlerTest.php
1 <?php
2
3 /**
4 * @group ContentHandler
5 */
6 class TextContentHandlerTest extends MediaWikiLangTestCase {
7 public function testSupportsDirectEditing() {
8 $handler = new TextContentHandler();
9 $this->assertTrue( $handler->supportsDirectEditing(), 'direct editing is supported' );
10 }
11
12 }