Bletch, more tabs
[catagits/Catalyst-Engine-STOMP.git] / t / 01_notabs.t
diff --git a/t/01_notabs.t b/t/01_notabs.t
new file mode 100644 (file)
index 0000000..391abe7
--- /dev/null
@@ -0,0 +1,20 @@
+use strict;
+use warnings;
+
+use File::Spec;
+use Test::More;
+
+if ( !-e "inc/.author" ) {
+    plan skip_all => 'NoTabs test only for developers.';
+}
+else {
+    eval { require Test::NoTabs };
+    if ( $@ ) {
+        plan tests => 1;
+        fail( 'You must install Test::NoTabs to run 01_no_tabs.t' );
+        exit;
+    }
+}
+
+Test::NoTabs->import;
+all_perl_files_ok(qw/lib/);