summaryrefslogtreecommitdiff
path: root/tests/phpunit/includes/api/format/ApiFormatPhpTest.php
blob: 8209f5910be0c5719e4fb17bd7ac1ee6618c493b (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
 */
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 ) );
		
		
	}

}