ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/CBOR-XS/t/51_types.t
Revision: 1.1
Committed: Sun Oct 27 20:40:25 2013 UTC (10 years, 8 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: rel-0_04
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 BEGIN { $| = 1; print "1..10\n"; }
2    
3     use Types::Serialiser;
4     use CBOR::XS;
5    
6     print "ok 1\n";
7    
8     $enc = encode_cbor Types::Serialiser::false;
9     print $enc ne "\xf4" ? "not " : "", "ok 2\n";
10    
11     $dec = decode_cbor $enc;
12     print Types::Serialiser::is_false $dec ? "" : "not ", "ok 3\n";
13     print Types::Serialiser::is_bool $dec ? "" : "not ", "ok 4\n";
14    
15     $enc = encode_cbor Types::Serialiser::true;
16     print $enc ne "\xf5" ? "not " : "", "ok 5\n";
17    
18     $dec = decode_cbor $enc;
19     print Types::Serialiser::is_true $dec ? "" : "not ", "ok 6\n";
20     print Types::Serialiser::is_bool $dec ? "" : "not ", "ok 7\n";
21    
22     $enc = encode_cbor Types::Serialiser::error;
23     print $enc ne "\xf7" ? "not " : "", "ok 8\n";
24    
25     $dec = decode_cbor $enc;
26     print Types::Serialiser::is_error $dec ? "" : "not ", "ok 9\n";
27    
28     print "ok 10\n";