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;

BEGIN {
	use_ok 'Text::UnicodeBox::Control', qw(:all);
};

isa_ok BOX_START(), 'Text::UnicodeBox::Control', 'Start';
isa_ok BOX_END(), 'Text::UnicodeBox::Control', 'End';

done_testing;