From: Michael G Schwern Date: Wed, 16 Jan 2008 10:26:26 +0000 (+0000) Subject: And fix the check in the dbicadmin test to look for JSON::Any. X-Git-Tag: v0.08010~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e4c66bc8b231a31e27b39b16711f0b36ad032c11;p=dbsrgits%2FDBIx-Class.git And fix the check in the dbicadmin test to look for JSON::Any. --- diff --git a/t/89dbicadmin.t b/t/89dbicadmin.t index 39eef83..8077664 100644 --- 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 ($@) {