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