File: 00_load.t

package info (click to toggle)
libjson-perl 4.02000-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 600 kB
  • sloc: perl: 1,958; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 227 bytes parent folder | download
1
2
3
4
5
6
7
8
9
# copied over from JSON::XS and modified to use JSON

BEGIN { $| = 1; print "1..1\n"; }
END {print "not ok 1\n" unless $loaded;}
BEGIN { $ENV{PERL_JSON_BACKEND} ||= "JSON::backportPP"; }

use JSON;
$loaded = 1;
print "ok 1\n";