aboutsummaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorBuchan Milne <buchan@mageia.org>2010-11-03 09:37:24 +0000
committerBuchan Milne <buchan@mageia.org>2010-11-03 09:37:24 +0000
commit41074cf0bc2da78eaffef8eca757a76d5e08fc34 (patch)
tree45b5be0346bcff5205e2afef46f316c3bf1f6984 /t
parenta2976ea837ac446e02681402db35976fa3e4f380 (diff)
downloadidentity-41074cf0bc2da78eaffef8eca757a76d5e08fc34.tar
identity-41074cf0bc2da78eaffef8eca757a76d5e08fc34.tar.gz
identity-41074cf0bc2da78eaffef8eca757a76d5e08fc34.tar.bz2
identity-41074cf0bc2da78eaffef8eca757a76d5e08fc34.tar.xz
identity-41074cf0bc2da78eaffef8eca757a76d5e08fc34.zip
Add some account admin features
Diffstat (limited to 't')
-rw-r--r--t/controller_admin.t9
1 files changed, 9 insertions, 0 deletions
diff --git a/t/controller_admin.t b/t/controller_admin.t
new file mode 100644
index 0000000..1ee0b0a
--- /dev/null
+++ b/t/controller_admin.t
@@ -0,0 +1,9 @@
+use strict;
+use warnings;
+use Test::More;
+
+BEGIN { use_ok 'Catalyst::Test', 'CatDap' }
+BEGIN { use_ok 'CatDap::Controller::admin' }
+
+ok( request('/admin')->is_success, 'Request should succeed' );
+done_testing();