From a0834f3df097d5760ce0c0598473cdae08368bbf Mon Sep 17 00:00:00 2001 From: dakkar Date: Wed, 8 Feb 2006 14:41:34 +0000 Subject: scheletro catalyst git-svn-id: svn://luxion/repos/IscrittiGroLUG/trunk@164 fcb26f47-9200-0410-b104-b98ab5b095f3 --- GroLUG/t/01app.t | 7 +++++++ GroLUG/t/02pod.t | 9 +++++++++ GroLUG/t/03podcoverage.t | 9 +++++++++ 3 files changed, 25 insertions(+) create mode 100644 GroLUG/t/01app.t create mode 100644 GroLUG/t/02pod.t create mode 100644 GroLUG/t/03podcoverage.t (limited to 'GroLUG/t') diff --git a/GroLUG/t/01app.t b/GroLUG/t/01app.t new file mode 100644 index 0000000..4c64994 --- /dev/null +++ b/GroLUG/t/01app.t @@ -0,0 +1,7 @@ +use strict; +use warnings; +use Test::More tests => 2; + +BEGIN { use_ok 'Catalyst::Test', 'GroLUG' } + +ok( request('/')->is_success, 'Request should succeed' ); diff --git a/GroLUG/t/02pod.t b/GroLUG/t/02pod.t new file mode 100644 index 0000000..251640d --- /dev/null +++ b/GroLUG/t/02pod.t @@ -0,0 +1,9 @@ +use strict; +use warnings; +use Test::More; + +eval "use Test::Pod 1.14"; +plan skip_all => 'Test::Pod 1.14 required' if $@; +plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD}; + +all_pod_files_ok(); diff --git a/GroLUG/t/03podcoverage.t b/GroLUG/t/03podcoverage.t new file mode 100644 index 0000000..ae59d4c --- /dev/null +++ b/GroLUG/t/03podcoverage.t @@ -0,0 +1,9 @@ +use strict; +use warnings; +use Test::More; + +eval "use Test::Pod::Coverage 1.04"; +plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@; +plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD}; + +all_pod_coverage_ok(); -- cgit v1.2.3