function FormsArbitraryRebuildTestCase::testUserRegistrationRebuild

Tests a basic rebuild with the user registration form.

Archivo

drupal-7.x/modules/simpletest/tests/form.test, line 1676
Unit tests for the Drupal Form API.

Class

FormsArbitraryRebuildTestCase
Tests rebuilding of arbitrary forms by altering them.

Código

function testUserRegistrationRebuild() {
  $edit = array(
    'name' => 'foo',
    'mail' => 'bar@example.com',
  );
  $this->drupalPost('user/register', $edit, 'Rebuild');
  $this->assertText('Form rebuilt.');
  $this->assertFieldByName('name', 'foo', 'Entered user name has been kept.');
  $this->assertFieldByName('mail', 'bar@example.com', 'Entered mail address has been kept.');
}