From c807bf78ae6e83700d8be6593739941c16840b29 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sat, 22 May 2010 16:05:36 +0200 Subject: Add Makefile & standard perl tests --- test/00-compile.t | 8 ++++++++ test/10-pod-coverage.t | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100755 test/00-compile.t create mode 100755 test/10-pod-coverage.t (limited to 'test') diff --git a/test/00-compile.t b/test/00-compile.t new file mode 100755 index 0000000..d7b89cb --- /dev/null +++ b/test/00-compile.t @@ -0,0 +1,8 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use 5.010; +use Test::More; +use Test::Compile; + +all_pl_files_ok(qw{ bin/comirror bin/comirror-setup }); diff --git a/test/10-pod-coverage.t b/test/10-pod-coverage.t new file mode 100755 index 0000000..df81177 --- /dev/null +++ b/test/10-pod-coverage.t @@ -0,0 +1,8 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use 5.010; +use Test::More; +use Test::Pod; + +all_pod_files_ok(qw{ bin/comirror bin/comirror-setup }); -- cgit v1.2.3