function ArbitraryRebuildTest::testUserRegistrationRebuild in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/system/src/Tests/Form/ArbitraryRebuildTest.php \Drupal\system\Tests\Form\ArbitraryRebuildTest::testUserRegistrationRebuild()
Tests a basic rebuild with the user registration form.
File
- core/
modules/ system/ src/ Tests/ Form/ ArbitraryRebuildTest.php, line 54 - Contains \Drupal\system\Tests\Form\ArbitraryRebuildTest.
Class
- ArbitraryRebuildTest
- Tests altering forms to be rebuilt so there are multiple steps.
Namespace
Drupal\system\Tests\FormCode
function testUserRegistrationRebuild() {
$edit = array(
'name' => 'foo',
'mail' => 'bar@example.com',
);
$this
->drupalPostForm('user/register', $edit, 'Rebuild');
$this
->assertText('Form rebuilt.');
$this
->assertFieldByName('name', 'foo', 'Entered username has been kept.');
$this
->assertFieldByName('mail', 'bar@example.com', 'Entered mail address has been kept.');
}