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

index 39eef83..8077664 100644 (file)
@@ -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 ($@) {