You are here

function browser_test_print_post_form in SimpleTest 7

1 string reference to 'browser_test_print_post_form'
browser_test_menu in tests/browser_test.module
Implement hook_menu().

File

tests/browser_test.module, line 39
Provide various pages for testing the internal browser.

Code

function browser_test_print_post_form($form, &$form_state) {
  $form['foo'] = array(
    '#type' => 'textfield',
  );
  $form['op'] = array(
    '#type' => 'submit',
    '#value' => t('Submit'),
  );
  return $form;
}