You are here

function ServicesXMLRPCTestCase::testlistMethods in Services 7.3

Test list.Methods call.

Regression http://drupal.org/node/1072844.

File

tests/functional/ServicesXMLRPCTests.test, line 42

Class

ServicesXMLRPCTestCase

Code

function testlistMethods() {
  $result = $this
    ->servicesXMLRPC('system.listMethods', array());
  $this
    ->assertFalse(in_array('node.index', $result['body']), 'Not able to find not enabled node.index method.', 'XMLRPC: listMethods');
}