| 7 form.test | FormsFormStorageTestCase::testValidation() |
| 8 form.test | FormsFormStorageTestCase::testValidation() |
Tests validation when form storage is used.
File
- modules/
simpletest/ tests/ form.test, line 1025 - Unit tests for the Drupal Form API.
Code
function testValidation() {
$this->drupalPost('form_test/form-storage', array('title' => '', 'value' => 'value_is_set'), 'Continue submit');
$this->assertPattern('/value_is_set/', t('The input values have been kept.'));
}
Login or register to post comments