diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-05-09 06:40:04 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-05-09 06:40:04 +0200 |
commit | 10750ae5d92f19b264fe0793659a146c3b1d6c14 (patch) | |
tree | c560f35e2358e36b2a1ed3a4ec537a1b4140bfc4 /xt | |
parent | bb4034f3ae1c8e54391e57135d604f22d6edcc26 (diff) |
Move author tests to xt/
Diffstat (limited to 'xt')
-rwxr-xr-x | xt/00-compile-pm.t | 8 | ||||
-rwxr-xr-x | xt/01-compile-pl.t | 8 | ||||
-rwxr-xr-x | xt/10-pod-coverage.t | 8 |
3 files changed, 24 insertions, 0 deletions
diff --git a/xt/00-compile-pm.t b/xt/00-compile-pm.t new file mode 100755 index 0000000..2476ab2 --- /dev/null +++ b/xt/00-compile-pm.t @@ -0,0 +1,8 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use 5.010; +use Test::More; +use Test::Compile; + +all_pm_files_ok(); diff --git a/xt/01-compile-pl.t b/xt/01-compile-pl.t new file mode 100755 index 0000000..f130ac4 --- /dev/null +++ b/xt/01-compile-pl.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(); diff --git a/xt/10-pod-coverage.t b/xt/10-pod-coverage.t new file mode 100755 index 0000000..5fe4faa --- /dev/null +++ b/xt/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(); |