diff options
Diffstat (limited to 't')
-rw-r--r-- | t/controller_New.t | 9 | ||||
-rw-r--r-- | t/model_Mirrors.t | 7 | ||||
-rw-r--r-- | t/view_TT.t | 7 |
3 files changed, 23 insertions, 0 deletions
diff --git a/t/controller_New.t b/t/controller_New.t new file mode 100644 index 0000000..64ecee3 --- /dev/null +++ b/t/controller_New.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::New' } + +ok( request('/new')->is_success, 'Request should succeed' ); +done_testing(); diff --git a/t/model_Mirrors.t b/t/model_Mirrors.t new file mode 100644 index 0000000..e09d845 --- /dev/null +++ b/t/model_Mirrors.t @@ -0,0 +1,7 @@ +use strict; +use warnings; +use Test::More; + +BEGIN { use_ok 'MGA::Mirrors::Model::Mirrors' } + +done_testing(); diff --git a/t/view_TT.t b/t/view_TT.t new file mode 100644 index 0000000..34c2283 --- /dev/null +++ b/t/view_TT.t @@ -0,0 +1,7 @@ +use strict; +use warnings; +use Test::More; + +BEGIN { use_ok 'MGA::Mirrors::View::TT' } + +done_testing(); |