t/000-compile.t
changeset 2 bc2f76c0908a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/t/000-compile.t	Fri Jan 20 09:13:33 2012 +0100
@@ -0,0 +1,12 @@
+use strict;
+use warnings;
+use Test::More;
+use Test::Compile;
+
+
+eval {
+    map { pl_file_ok $_ or die } all_pl_files();
+    map { pm_file_ok $_ or die } all_pm_files();
+} or BAIL_OUT();
+
+done_testing;