You are here

function clients_test_clients_connection_type_info in Web Service Clients 7.3

Implements hook_clients_connection_type_info().

File

tests/clients_test/clients_test.module, line 11
clients_test.module Provides a dummy connection type and connection.

Code

function clients_test_clients_connection_type_info() {
  return array(
    'clients_dummy' => array(
      'label' => t('Dummy Client'),
      'description' => t('Dummy client connection for use in testing.'),
      'tests' => array(
        'connect' => 'MyClientTypeTestConnection',
      ),
    ),
  );
}