mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 21:18:23 +01:00
10 lines
278 B
Perl
10 lines
278 B
Perl
use strict;
|
|
use warnings;
|
|
use Test::More tests => 1;
|
|
use Config;
|
|
use_ok 'Data::MessagePack';
|
|
diag ( "Testing Data::MessagePack/$Data::MessagePack::VERSION (",
|
|
$INC{'Data/MessagePack/PP.pm'} ? 'PP' : 'XS', ")" );
|
|
|
|
diag "byteoder: $Config{byteorder}, ivsize=$Config{ivsize}";
|