From 942f63b4ca940d04e8e2229387e2d511b3f9aba1 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Tue, 14 Jul 2009 02:24:14 +0000 Subject: [PATCH] #518412 by yched: Minor clean-up on Field API tests. --- modules/field/field.test | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/modules/field/field.test b/modules/field/field.test index b4f116373ac..629709d8797 100644 --- a/modules/field/field.test +++ b/modules/field/field.test @@ -15,9 +15,9 @@ class FieldAttachTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => 'Field attach tests', - 'description' => "Test Field Attach API functions.", - 'group' => 'Field' + 'name' => 'Field attach tests', + 'description' => 'Test Field Attach API functions.', + 'group' => 'Field', ); } @@ -813,9 +813,9 @@ class FieldInfoTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => 'Field info tests', - 'description' => "Get information about existing fields, instances and bundles.", - 'group' => 'Field' + 'name' => 'Field info tests', + 'description' => 'Get information about existing fields, instances and bundles.', + 'group' => 'Field', ); } @@ -918,9 +918,9 @@ class FieldInfoTestCase extends DrupalWebTestCase { class FieldFormTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => 'Field form tests', - 'description' => "Test Field form handling.", - 'group' => 'Field' + 'name' => 'Field form tests', + 'description' => 'Test Field form handling.', + 'group' => 'Field', ); } @@ -1207,9 +1207,9 @@ class FieldFormTestCase extends DrupalWebTestCase { class FieldCrudTestCase extends DrupalWebTestCase { public static function getInfo() { return array( - 'name' => 'Field CRUD tests', - 'description' => "Create / read /update a field.", - 'group' => 'Field' + 'name' => 'Field CRUD tests', + 'description' => 'Create / read /update fields.', + 'group' => 'Field', ); } @@ -1421,14 +1421,14 @@ class FieldCrudTestCase extends DrupalWebTestCase { } } -class FieldInstanceTestCase extends DrupalWebTestCase { +class FieldInstanceCrudTestCase extends DrupalWebTestCase { protected $field; public static function getInfo() { return array( - 'name' => 'Field instance tests', - 'description' => "Create field entities by attaching fields to entities.", - 'group' => 'Field' + 'name' => 'Field instance CRUD tests', + 'description' => 'Create field entities by attaching fields to entities.', + 'group' => 'Field', ); }