1# Before `make install' is performed this script should be runnable with
2# `make test'. After `make install' it should work as `perl Data-AMF-XS.t'
3
4#########################
5
6# change 'tests => 1' to 'tests => last_test_to_print';
7
8no warnings 'once';
9#BEGIN {
10	$totals =  4;
11    no warnings 'once';
12	eval "use Test::More tests => $totals";
13
14	use_ok('Storable::AMF');
15	use_ok('Storable::AMF0');
16	use_ok('Storable::AMF3');
17	use_ok('Storable::AMF::Mapper');
18    print STDERR unpack( "H*", pack "d", 12345678), " ";
19    Storable::AMF3::endian();
20#	};
21#########################
22
23# Insert your test code below, the Test::More module is use()ed here so read
24# its man page ( perldoc Test::More ) for help writing this test script.
25
26