From: Karen Etheridge Date: Wed, 23 Apr 2014 16:46:02 +0000 (-0700) Subject: make all skip messages look the same X-Git-Tag: v1.002001~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a3dc87a60768f40e6e5d86a1ff913139e4e6a038;p=p5sagit%2FJSON-MaybeXS.git make all skip messages look the same --- diff --git a/t/cpanel.t b/t/cpanel.t index 5ffa55f..5db64ec 100644 --- a/t/cpanel.t +++ b/t/cpanel.t @@ -4,7 +4,7 @@ use Test::More; use JSON::MaybeXS; unless ( eval { require Cpanel::JSON::XS; 1 } ) { - plan skip_all => 'Cpanel::JSON::XS not installed'; + plan skip_all => 'No Cpanel::JSON::XS'; done_testing; exit; } diff --git a/t/xs.t b/t/xs.t index 51b56dd..41ffcae 100644 --- a/t/xs.t +++ b/t/xs.t @@ -6,7 +6,7 @@ use Test::More; use JSON::MaybeXS; unless ( eval { require JSON::XS; 1 } ) { - plan skip_all => 'JSON::XS not installed'; + plan skip_all => 'No JSON::XS'; done_testing; exit; }