diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2010-08-06 19:24:03 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-08-06 19:24:03 +0200 |
commit | ee38a4b7cdf0032e35e8249eb45d255480895119 (patch) | |
tree | 45e43f819a3eea555bd0fa5fa22cd2505500771e /t | |
parent | 308ec1bf336e39736916ba72053f16df0a9ba122 (diff) |
Add Efa::Error class (probably sucks so far :p)
Diffstat (limited to 't')
-rwxr-xr-x | t/00-compile-pm.t (renamed from t/00-compile.t) | 2 | ||||
-rwxr-xr-x | t/01-compile-pl.t | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/t/00-compile.t b/t/00-compile-pm.t index 10c1984..2476ab2 100755 --- a/t/00-compile.t +++ b/t/00-compile-pm.t @@ -5,4 +5,4 @@ use 5.010; use Test::More; use Test::Compile; -all_pl_files_ok('bin/efa'); +all_pm_files_ok(); diff --git a/t/01-compile-pl.t b/t/01-compile-pl.t new file mode 100755 index 0000000..f130ac4 --- /dev/null +++ b/t/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(); |