use Test::Needs for backend tests
[p5sagit/JSON-MaybeXS.git] / t / preload_xs.t
CommitLineData
16205c4a 1use strict;
4e1fb2f8 2use warnings;
0b694b31 3
17528b04 4use Test::Needs { 'JSON::XS' => '3.0' }; # load first, before JSON::MaybeXS
2c67ae64 5use Test::More 0.88;
16205c4a 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
9c4f62de 15require './t/lib/is_bool.pm';
1ca3b561 16
16205c4a 17done_testing;