Source
Source Code of This Project
Actions
- Download source code
-
Browse source code
- apps
- lib
- filter
- form
- helper
- model
- task
- validator
- widget
- test
- LICENSE
- README
Source Code of This Project
/test/functional/frontend/servicingActionsTest.php
<?php
include(dirname(__FILE__).'/../../bootstrap/functional.php');
$browser = new sfTestFunctional(new sfBrowser());
$browser->
get('/servicing/index')->
with('request')->begin()->
isParameter('module', 'servicing')->
isParameter('action', 'index')->
end()->
with('response')->begin()->
isStatusCode(200)->
checkElement('body', '!/This is a temporary page/')->
end()
;