summaryrefslogtreecommitdiff
path: root/t/simple.t
diff options
context:
space:
mode:
Diffstat (limited to 't/simple.t')
-rw-r--r--t/simple.t21
1 files changed, 21 insertions, 0 deletions
diff --git a/t/simple.t b/t/simple.t
new file mode 100644
index 0000000..ed01aed
--- /dev/null
+++ b/t/simple.t
@@ -0,0 +1,21 @@
+#!perl -T
+
+use lib "t";
+use strict;
+use Test::More tests=>4;
+use Test::Builder::Tester;
+
+BEGIN {
+ use_ok( 'Test::Pod::Coverage' );
+}
+
+pod_coverage_ok( "Simple", "Simple is OK" );
+
+# Now try it under T:B:T
+test_out( "ok 1 - Simple is still OK" );
+pod_coverage_ok( "Simple", "Simple is still OK" );
+test_test( "Simple runs under T:B:T" );
+
+test_out( "ok 1 - Pod coverage on Simple" );
+pod_coverage_ok( "Simple" );
+test_test( "Simple runs under T:B:T" );