diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-07-14 02:24:14 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-07-14 02:24:14 +0000 |
commit | 942f63b4ca940d04e8e2229387e2d511b3f9aba1 (patch) | |
tree | f7002eecb3c612c6da5c02e467955fe46bfff7dc /modules/field/field.test | |
parent | 735e1d904ff44d6072c1d19edcd12cfc6ef6b3a6 (diff) | |
download | brdo-942f63b4ca940d04e8e2229387e2d511b3f9aba1.tar.gz brdo-942f63b4ca940d04e8e2229387e2d511b3f9aba1.tar.bz2 |
#518412 by yched: Minor clean-up on Field API tests.
Diffstat (limited to 'modules/field/field.test')
-rw-r--r-- | modules/field/field.test | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/modules/field/field.test b/modules/field/field.test index b4f116373..629709d87 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', ); } |