You are here

public static function ServicesParserTests::getInfo in Services 7.3

Same name and namespace in other branches
  1. 6.3 tests/functional/ServicesParserTests.test \ServicesParserTests::getInfo()

Implementation of getInfo().

File

tests/functional/ServicesParserTests.test, line 72
Call the endpoint tests when no authentication is being used.

Class

ServicesParserTests
Run test cases for the endpoint with no authentication turned on.

Code

public static function getInfo() {
  return array(
    'name' => 'Parser',
    'description' => 'Test the Parser functionality.',
    'group' => 'Services',
    // The libraries module is required by rest_service, which is used by
    // ServicesEndpointTests.
    'dependencies' => array(
      'ctools',
      'libraries',
    ),
  );
}