projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
c843f5e
)
And fix the check in the dbicadmin test to look for JSON::Any.
Michael G Schwern [Wed, 16 Jan 2008 10:26:26 +0000 (10:26 +0000)]
t/89dbicadmin.t
patch
|
blob
|
blame
|
history
diff --git
a/t/89dbicadmin.t
b/t/89dbicadmin.t
index
39eef83
..
8077664
100644
(file)
--- a/
t/89dbicadmin.t
+++ b/
t/89dbicadmin.t
@@
-8,8
+8,8
@@
use DBICTest;
my $schema = DBICTest->init_schema();
-eval 'require JSON';
-plan skip_all => 'Install JSON to run this test' if ($@);
+eval 'require JSON::Any';
+plan skip_all => 'Install JSON::Any to run this test' if ($@);
eval 'require Text::CSV_XS';
if ($@) {