MediaWiki
REL1_19
|
00001 <?php 00002 00007 class ApiFormatPhpTest extends ApiFormatTestBase { 00008 00009 function testValidPhpSyntax() { 00010 00011 $data = $this->apiRequest( 'php', array( 'action' => 'query', 'meta' => 'siteinfo' ) ); 00012 00013 $this->assertInternalType( 'array', unserialize( $data ) ); 00014 $this->assertGreaterThan( 0, count( (array) $data ) ); 00015 00016 00017 } 00018 00019 }