use Test::Needs for backend tests
[p5sagit/JSON-MaybeXS.git] / t / cpanel.t
1 use strict;
2 use warnings;
3 use Test::More 0.88;
4 use JSON::MaybeXS;
5
6 use Test::Needs 'Cpanel::JSON::XS';
7 diag 'Using Cpanel::JSON::XS ', Cpanel::JSON::XS->VERSION;
8
9 is( JSON, 'Cpanel::JSON::XS', 'Correct JSON class' );
10
11 is( \&encode_json,
12     \&Cpanel::JSON::XS::encode_json,
13     'Correct encode_json function'
14 );
15
16 is( \&decode_json,
17     \&Cpanel::JSON::XS::decode_json,
18     'Correct encode_json function'
19 );
20
21 require './t/lib/is_bool.pm';
22
23 done_testing;