msgpack/perl/t/00_compile.t

10 lines
278 B
Perl
Raw Normal View History

2009-04-15 12:55:41 +09:00
use strict;
use warnings;
use Test::More tests => 1;
2010-10-21 23:27:26 +09:00
use Config;
2009-04-15 12:55:41 +09:00
use_ok 'Data::MessagePack';
2010-09-18 14:51:17 +09:00
diag ( "Testing Data::MessagePack/$Data::MessagePack::VERSION (",
$INC{'Data/MessagePack/PP.pm'} ? 'PP' : 'XS', ")" );
2010-10-21 23:27:26 +09:00
diag "byteoder: $Config{byteorder}, ivsize=$Config{ivsize}";