function FieldUIManageFieldsTestCase::testRenameBundle

Tests renaming a bundle.

File

modules/field_ui/field_ui.test, line 424

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');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.