add parentheses so as to not imply we are using JSON.pm
[p5sagit/JSON-MaybeXS.git] / t / pp.t
CommitLineData
3be1e192 1use strict;
4e1fb2f8 2use warnings;
0b694b31 3
b4d74169 4# hide Cpanel::JSON::XS, JSON::XS
5use lib map {
6 my ( $m, $c ) = ( $_, qq{die "Can't locate $_ (hidden)\n"} );
7 sub { return unless $_[1] eq $m; open my $fh, "<", \$c; return $fh }
8} qw{Cpanel/JSON/XS.pm JSON/XS.pm};
9
b461f143 10use if !eval { require JSON::PP; 1; }, 'Test::More', skip_all => 'No JSON::PP';
2c67ae64 11use Test::More 0.88;
3be1e192 12use JSON::MaybeXS;
13
0b694b31 14diag 'Using JSON::PP ', JSON::PP->VERSION;
15
3be1e192 16is(JSON, 'JSON::PP', 'Correct JSON class');
17
18is(
19 \&encode_json, \&JSON::PP::encode_json,
20 'Correct encode_json function'
21);
22
23is(
24 \&decode_json, \&JSON::PP::decode_json,
25 'Correct encode_json function'
26);
27
9c4f62de 28require './t/lib/is_bool.pm';
1ca3b561 29
3be1e192 30done_testing;