aboutsummaryrefslogtreecommitdiffstats
path: root/t/controller_Validate.t
diff options
context:
space:
mode:
Diffstat (limited to 't/controller_Validate.t')
-rw-r--r--t/controller_Validate.t9
1 files changed, 9 insertions, 0 deletions
diff --git a/t/controller_Validate.t b/t/controller_Validate.t
new file mode 100644
index 0000000..eb9b7df
--- /dev/null
+++ b/t/controller_Validate.t
@@ -0,0 +1,9 @@
+use strict;
+use warnings;
+use Test::More;
+
+BEGIN { use_ok 'Catalyst::Test', 'MGA::Mirrors' }
+BEGIN { use_ok 'MGA::Mirrors::Controller::Validate' }
+
+ok( request('/validate')->is_success, 'Request should succeed' );
+done_testing();