You are here

function LinkContentCrudTest::getInfo in Link 6

Same name and namespace in other branches
  1. 6.2 tests/link.crud.test \LinkContentCrudTest::getInfo()

File

tests/link.crud.test, line 13
Basic CRUD simpletests for the link module, based off of content.crud.test in CCK.

Class

LinkContentCrudTest

Code

function getInfo() {
  return array(
    'name' => t('Link CRUD - Basic API tests'),
    'description' => t('Tests the field CRUD (create, read, update, delete) API. <strong>Requires <a href="@schema_link">Schema module</a>.</strong>', array(
      '@schema_link' => 'http://www.drupal.org/project/schema',
    )),
    'group' => t('Link'),
  );
}