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