aboutsummaryrefslogtreecommitdiffstats
path: root/t/app/controller/my.t
diff options
context:
space:
mode:
Diffstat (limited to 't/app/controller/my.t')
-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();