aboutsummaryrefslogtreecommitdiffstats
path: root/t/app
diff options
context:
space:
mode:
authorEdmund von der Burg <evdb@mysociety.org>2011-03-04 11:07:28 +0000
committerEdmund von der Burg <evdb@mysociety.org>2011-03-04 11:07:28 +0000
commite18bf78e0513d4f1ebf0413d60691525cdcc2f5d (patch)
tree1fdd80f486b5f731f4de8fc2c647556c536f4a1c /t/app
parent5e2004439616d18bb26a3d1f3d313309c230c0a1 (diff)
Added 'my' section to the site
Diffstat (limited to 't/app')
-rw-r--r--t/app/controller/my.t10
1 files changed, 10 insertions, 0 deletions
diff --git a/t/app/controller/my.t b/t/app/controller/my.t
new file mode 100644
index 000000000..e018a8941
--- /dev/null
+++ b/t/app/controller/my.t
@@ -0,0 +1,10 @@
+use strict;
+use warnings;
+use Test::More;
+
+
+use Catalyst::Test 'FixMyStreet::App';
+use FixMyStreet::App::Controller::My;
+
+ok( request('/my')->is_success, 'Request should succeed' );
+done_testing();