diff options
author | Daniel Friesel <derf@finalrewind.org> | 2017-11-26 18:19:18 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2017-11-26 18:19:18 +0100 |
commit | cbf05945f006c7cb039af76c876125ccfeffd00a (patch) | |
tree | bde7539d5ec63ab7a0517362e3350f644dd227f8 /t | |
parent | 20c1141d0383f4cc4ac164fd154e89ca1e0cda47 (diff) |
Add Build.PL and basic tests
Diffstat (limited to 't')
-rwxr-xr-x | t/01-compile-pl.t | 7 | ||||
-rwxr-xr-x | t/10-pod.t | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/t/01-compile-pl.t b/t/01-compile-pl.t new file mode 100755 index 0000000..92bff6e --- /dev/null +++ b/t/01-compile-pl.t @@ -0,0 +1,7 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use 5.010; +use Test::Compile; + +all_pl_files_ok(); diff --git a/t/10-pod.t b/t/10-pod.t new file mode 100755 index 0000000..a488dfa --- /dev/null +++ b/t/10-pod.t @@ -0,0 +1,7 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use 5.010; +use Test::Pod; + +all_pod_files_ok(); |