1234567891011121314151617181920 |
- <?php
- include(dirname(__FILE__).'/../../bootstrap/functional.php');
- $browser = new sfTestFunctional(new sfBrowser());
- $browser->
- get('/admin/index')->
- with('request')->begin()->
- isParameter('module', 'admin')->
- isParameter('action', 'index')->
- end()->
- with('response')->begin()->
- isStatusCode(200)->
- checkElement('body', '!/This is a temporary page/')->
- end()
- ;
|