diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-11-25 20:18:17 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-11-25 20:18:17 +0100 |
commit | d8c3d515eb1297792bf8105a44c6ce6d5be9ec7c (patch) | |
tree | 3b975b395d4673f5e01ece6e509e16bddc5e42f3 /t/02-compile-pod.t | |
parent | a6fab60716a8aba9030d60bc821545e7c41f1a46 (diff) |
add preliminary build.PL and basic tests
Diffstat (limited to 't/02-compile-pod.t')
-rw-r--r-- | t/02-compile-pod.t | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/t/02-compile-pod.t b/t/02-compile-pod.t new file mode 100644 index 0000000..5fe4faa --- /dev/null +++ b/t/02-compile-pod.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(); |