ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/CBOR-XS/t/52_object.t
(Generate patch)

Comparing CBOR-XS/t/52_object.t (file contents):
Revision 1.6 by root, Thu Nov 28 11:37:23 2013 UTC vs.
Revision 1.7 by root, Sat Nov 30 17:19:34 2013 UTC

1BEGIN { $| = 1; print "1..20\n"; } 1BEGIN { $| = 1; print "1..21\n"; }
2BEGIN { $^W = 0 } # hate 2BEGIN { $^W = 0 } # hate
3 3
4use CBOR::XS; 4use CBOR::XS;
5 5
6print "ok 1\n"; 6print "ok 1\n";
44print $enc eq (pack "H*", "d81a845043424f523a3a58533a3a667265657a65030102") ? "" : "not ", "ok 12 ", (unpack "H*", $enc), "\n"; 44print $enc eq (pack "H*", "d81a845043424f523a3a58533a3a667265657a65030102") ? "" : "not ", "ok 12 ", (unpack "H*", $enc), "\n";
45 45
46$dec = decode_cbor $enc; 46$dec = decode_cbor $enc;
47print $dec eq 777 ? "" : "not ", "ok 19\n"; 47print $dec eq 777 ? "" : "not ", "ok 19\n";
48 48
49print "ok 20\n"; 49sub CBOR::XS::freeze2::FREEZE {
50 77
51}
50 52
53my $enc = CBOR::XS->new->allow_sharing->encode ([(bless [], CBOR::XS::freeze2::) x 3]);
54print $enc eq (pack "H*", "83d81cd81a825143424f523a3a58533a3a667265657a6532184dd81d00d81d00") ? "" : "not ", "ok 20 ", (unpack "H*", $enc), "\n";
55
56print "ok 21\n";
57

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines