The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use Test::More tests => 4;

use XML::WBXML qw(xml_to_wbxml wbxml_to_xml);

ok(defined &XML::WBXML::xml_to_wbxml, "found x2w in package");
ok(defined &XML::WBXML::wbxml_to_xml, "found w2x in package");

ok( (defined &xml_to_wbxml), "x2w exported" );
ok( (defined &wbxml_to_xml), "w2x exported" );