1use warnings;
2use strict;
3use Test::More tests => 2;
4
5use XS::APItest;
6
7XS::APItest::test_cophh();
8ok 1;
9
10is_deeply XS::APItest::example_cophh_2hv(), {
11    "foo_1" => 111,
12    "foo_\x{aa}" => 123,
13    "foo_\x{bb}" => 456,
14    "foo_\x{cc}" => 789,
15    "foo_\x{666}" => 666,
16};
17
181;
19