blob: dba9ffab22d469d5f25c5e4e2470038bfe76e07e (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | <?php
include(dirname(__FILE__).'/../../bootstrap/functional.php');
// create a new test browser
$browser = new sfTestBrowser();
$browser->initialize();
$browser->
  get('/domaintest/index')->
  isStatusCode(200)->
  isRequestParameter('module', 'domaintest')->
  isRequestParameter('action', 'index')->
  checkResponseElement('body', '!/This is a temporary page/')
;
 |