Merge "Language: s/error_log/wfWarn/"
[lhc/web/wiklou.git] / tests / phpunit / includes / api / format / ApiFormatNoneTest.php
1 <?php
2
3 /**
4 * @group API
5 * @group Database
6 * @group medium
7 * @covers ApiFormatNone
8 */
9 class ApiFormatNoneTest extends ApiFormatTestBase {
10
11 public function testValidSyntax( ) {
12 $data = $this->apiRequest( 'none', array( 'action' => 'query', 'meta' => 'siteinfo' ) );
13
14 $this->assertEquals( '', $data ); // No output!
15 }
16 }