diff options
Diffstat (limited to 'test/functional/admin/domaintestActionsTest.php')
| -rw-r--r-- | test/functional/admin/domaintestActionsTest.php | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/test/functional/admin/domaintestActionsTest.php b/test/functional/admin/domaintestActionsTest.php new file mode 100644 index 0000000..dba9ffa --- /dev/null +++ b/test/functional/admin/domaintestActionsTest.php @@ -0,0 +1,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/') +; | 
