MediaWiki  REL1_24
ApiFormatNoneTest.php
Go to the documentation of this file.
00001 <?php
00002 
00009 class ApiFormatNoneTest extends ApiFormatTestBase {
00010 
00011     public function testValidSyntax( ) {
00012         $data = $this->apiRequest( 'none', array( 'action' => 'query', 'meta' => 'siteinfo' ) );
00013 
00014         $this->assertEquals( '', $data ); // No output!
00015     }
00016 }