MediaWiki
REL1_24
|
00001 <?php 00002 00009 class ApiFormatWddxTest extends ApiFormatTestBase { 00010 00014 public function testValidSyntax( ) { 00015 $data = $this->apiRequest( 'wddx', array( 'action' => 'query', 'meta' => 'siteinfo' ) ); 00016 00017 $this->assertInternalType( 'array', wddx_deserialize( $data ) ); 00018 $this->assertGreaterThan( 0, count( (array)$data ) ); 00019 } 00020 }