function FieldUIManageFieldsTestCase::testRenameBundle
7.x field_ui.test | FieldUIManageFieldsTestCase::testRenameBundle() |
Tests renaming a bundle.
File
- drupal-7.x/
modules/ field_ui/ field_ui.test, line 418 - Tests for field_ui.module.
Class
- FieldUIManageFieldsTestCase
- Tests the functionality of the 'Manage fields' screen.
Code
function testRenameBundle() {
$type2 = strtolower($this->randomName(8)) . '_' . 'test';
$hyphen_type2 = str_replace('_', '-', $type2);
$options = array(
'type' => $type2,
);
$this->drupalPost('admin/structure/types/manage/' . $this->hyphen_type, $options, t('Save content type'));
$this->drupalGet('admin/structure/types/manage/' . $hyphen_type2 . '/fields');
}