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

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

	function testValidPhpSyntax() {

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

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

	}

}