mirror of
https://github.com/stephenenelson/convert-binhex.git
synced 2024-11-25 06:30:54 +00:00
10 lines
99 B
Perl
10 lines
99 B
Perl
|
use strict;
|
||
|
use warnings;
|
||
|
|
||
|
use Test::More;
|
||
|
|
||
|
TESTS: {
|
||
|
use_ok('Convert::BinHex');
|
||
|
}
|
||
|
|
||
|
done_testing();
|