summaryrefslogtreecommitdiff
path: root/tests/phpunit/includes/api/format/ApiFormatPhpTest.php
blob: a0bbb2dc7df6790e4c8395b2fa23962216f549ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

/**
 * @group API
 * @group Database
 * @group medium
 */
class ApiFormatPhpTest extends ApiFormatTestBase {

	public function testValidPhpSyntax() {

		$data = $this->apiRequest( 'php', array( 'action' => 'query', 'meta' => 'siteinfo' ) );

		$this->assertInternalType( 'array', unserialize( $data ) );
		$this->assertGreaterThan( 0, count( (array)$data ) );
	}
}