Home | History | Annotate | Download | only in t
      1 
      2 use strict;
      3 use Test::More;
      4 BEGIN { plan tests => 1 };
      5 
      6 BEGIN { $ENV{PERL_JSON_BACKEND} = 1; }
      7 
      8 use JSON;
      9 
     10 SKIP: {
     11     skip "can't use JSON::XS.", 1, unless( JSON->backend->is_xs );
     12     ok(1, "load JSON::XS");
     13 }
     14 
     15