public static function ServicesRESTServerTests::getInfo in Services 7.3
Implementation of getInfo().
File
- servers/
rest_server/ tests/ ServicesRESTServerTests.test, line 12
Class
- ServicesRESTServerTests
- Unit tests for RESTServer class.
Code
public static function getInfo() {
return array(
'name' => 'RESTServer unit tests',
'description' => 'Test separate methods of class.',
'group' => 'Services',
// The REST service module requires the libraries module.
'dependencies' => array(
'ctools',
'libraries',
),
);
}