From ab171d056a160dd16174316c5cbf84c9059ad712 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 19 Dec 2010 12:48:07 +0100 Subject: Add Build.PL + basic tests --- t/00-compile.t | 8 ++++++++ t/10-pod-coverage.t | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100755 t/00-compile.t create mode 100755 t/10-pod-coverage.t (limited to 't') diff --git a/t/00-compile.t b/t/00-compile.t new file mode 100755 index 0000000..0b0ce37 --- /dev/null +++ b/t/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('bin/hashl'); diff --git a/t/10-pod-coverage.t b/t/10-pod-coverage.t new file mode 100755 index 0000000..7def222 --- /dev/null +++ b/t/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('bin/hashl'); -- cgit v1.2.3