Files
2017-03-02 21:57:21 -06:00

16 lines
365 B
PHP

<?php
include(dirname(__FILE__).'/../../bootstrap/functional.php');
// create a new test browser
$browser = new sfTestBrowser();
$browser->initialize();
$browser->
get('/default/index')->
isStatusCode(200)->
isRequestParameter('module', 'default')->
isRequestParameter('action', 'index')->
checkResponseElement('body', '!/This is a temporary page/')
;