#518412 by yched: Minor clean-up on Field API tests.

merge-requests/26/head
Angie Byron 2009-07-14 02:24:14 +00:00
parent 735e1d904f
commit 942f63b4ca
1 changed files with 16 additions and 16 deletions

View File

@ -15,9 +15,9 @@
class FieldAttachTestCase extends DrupalWebTestCase { class FieldAttachTestCase extends DrupalWebTestCase {
public static function getInfo() { public static function getInfo() {
return array( return array(
'name' => 'Field attach tests', 'name' => 'Field attach tests',
'description' => "Test Field Attach API functions.", 'description' => 'Test Field Attach API functions.',
'group' => 'Field' 'group' => 'Field',
); );
} }
@ -813,9 +813,9 @@ class FieldInfoTestCase extends DrupalWebTestCase {
public static function getInfo() { public static function getInfo() {
return array( return array(
'name' => 'Field info tests', 'name' => 'Field info tests',
'description' => "Get information about existing fields, instances and bundles.", 'description' => 'Get information about existing fields, instances and bundles.',
'group' => 'Field' 'group' => 'Field',
); );
} }
@ -918,9 +918,9 @@ class FieldInfoTestCase extends DrupalWebTestCase {
class FieldFormTestCase extends DrupalWebTestCase { class FieldFormTestCase extends DrupalWebTestCase {
public static function getInfo() { public static function getInfo() {
return array( return array(
'name' => 'Field form tests', 'name' => 'Field form tests',
'description' => "Test Field form handling.", 'description' => 'Test Field form handling.',
'group' => 'Field' 'group' => 'Field',
); );
} }
@ -1207,9 +1207,9 @@ class FieldFormTestCase extends DrupalWebTestCase {
class FieldCrudTestCase extends DrupalWebTestCase { class FieldCrudTestCase extends DrupalWebTestCase {
public static function getInfo() { public static function getInfo() {
return array( return array(
'name' => 'Field CRUD tests', 'name' => 'Field CRUD tests',
'description' => "Create / read /update a field.", 'description' => 'Create / read /update fields.',
'group' => 'Field' 'group' => 'Field',
); );
} }
@ -1421,14 +1421,14 @@ class FieldCrudTestCase extends DrupalWebTestCase {
} }
} }
class FieldInstanceTestCase extends DrupalWebTestCase { class FieldInstanceCrudTestCase extends DrupalWebTestCase {
protected $field; protected $field;
public static function getInfo() { public static function getInfo() {
return array( return array(
'name' => 'Field instance tests', 'name' => 'Field instance CRUD tests',
'description' => "Create field entities by attaching fields to entities.", 'description' => 'Create field entities by attaching fields to entities.',
'group' => 'Field' 'group' => 'Field',
); );
} }