summaryrefslogtreecommitdiffstats
path: root/test/functional/admin/contentActionsTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/admin/contentActionsTest.php')
-rw-r--r--test/functional/admin/contentActionsTest.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/functional/admin/contentActionsTest.php b/test/functional/admin/contentActionsTest.php
new file mode 100644
index 0000000..94650a4
--- /dev/null
+++ b/test/functional/admin/contentActionsTest.php
@@ -0,0 +1,15 @@
+<?php
+
+include(dirname(__FILE__).'/../../bootstrap/functional.php');
+
+// create a new test browser
+$browser = new sfTestBrowser();
+$browser->initialize();
+
+$browser->
+ get('/content/index')->
+ isStatusCode(200)->
+ isRequestParameter('module', 'content')->
+ isRequestParameter('action', 'index')->
+ checkResponseElement('body', '!/This is a temporary page/')
+;