Release commit for 1.003_000
[p5sagit/JSON-MaybeXS.git] / t / preload_xs.t
CommitLineData
16205c4a 1use strict;
2use warnings FATAL => 'all';
0b694b31 3
b461f143 4use if !eval { require JSON::XS; 1; }, 'Test::More', skip_all => 'No JSON::XS';
16205c4a 5use Test::More;
6use JSON::MaybeXS;
7
0b694b31 8diag 'Using JSON::XS ', JSON::XS->VERSION;
9
16205c4a 10is( JSON, 'JSON::XS', 'Correct JSON class' );
11
12is( \&encode_json, \&JSON::XS::encode_json, 'Correct encode_json function' );
13is( \&decode_json, \&JSON::XS::decode_json, 'Correct encode_json function' );
14
1ca3b561 15require 't/lib/is_bool.pm';
16
16205c4a 17done_testing;