projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
b85be4c
)
Fix the skip for DBD::Multi
Michael G Schwern [Fri, 7 Mar 2008 16:05:35 +0000 (16:05 +0000)]
t/93storage_replication.t
patch
|
blob
|
blame
|
history
diff --git
a/t/93storage_replication.t
b/t/93storage_replication.t
index
34c0f48
..
81135dd
100644
(file)
--- a/
t/93storage_replication.t
+++ b/
t/93storage_replication.t
@@
-7,8
+7,7
@@
use File::Copy;
use DBICTest;
use Test::More;
-eval {use DBD::Multi};
-plan skip_all => 'No DBD::Multi' if ($@);
+plan skip_all => 'No DBD::Multi' unless eval { require DBD::Multi };
plan tests => 3;