diff options
author | Olivier Thauvin <nanardon@mageia.org> | 2010-09-27 10:51:18 +0000 |
---|---|---|
committer | Olivier Thauvin <nanardon@mageia.org> | 2010-09-27 10:51:18 +0000 |
commit | 7c16f1d36bd584c36f187bd0401fb39e94771765 (patch) | |
tree | 2bf89b42bc81f1d4b4f8c557a717cbc25d446195 /t | |
parent | 57beda663bb4448ad838b599e5df5bf50375a5cb (diff) | |
download | mgamirrors-7c16f1d36bd584c36f187bd0401fb39e94771765.tar mgamirrors-7c16f1d36bd584c36f187bd0401fb39e94771765.tar.gz mgamirrors-7c16f1d36bd584c36f187bd0401fb39e94771765.tar.bz2 mgamirrors-7c16f1d36bd584c36f187bd0401fb39e94771765.tar.xz mgamirrors-7c16f1d36bd584c36f187bd0401fb39e94771765.zip |
- code base
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(); |