protected function BotchaHoneypotTestCase::setFormValues in BOTCHA Spam Prevention 6.3
Same name and namespace in other branches
- 6.2 botcha.test \BotchaHoneypotTestCase::setFormValues()
- 7.2 botcha.test \BotchaHoneypotTestCase::setFormValues()
- 7.3 tests/botcha.simpletest.test \BotchaHoneypotTestCase::setFormValues()
Helper function to generate a default form values array for any form.
Overrides BotchaBaseWebTestCase::setFormValues
File
- tests/
botcha.simpletest.test, line 1135 - Simpletest-tests for BOTCHA module.
Class
Code
protected function setFormValues($form, $should_pass, &$parameters = array()) {
$edit = parent::setFormValues($form, $should_pass, $parameters);
// Since we can't test javascript (is there a way to do it?) and Simpletest
// can't evaluate javascript we should do nothing to break the submission.
return $edit;
}