initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:57:21 -06:00
commit fd8ad64063
22097 changed files with 1960930 additions and 0 deletions

View File

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