The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w

# ------------------------------------------------------------------------------
#
# ------------------------------------------------------------------------------

use strict;
use warnings;

use Test::More tests => 3;

use FindBin qw($Bin);
use lib ("$Bin/../lib");

BEGIN
{
    use_ok('Data::Password::Entropy');
    isa_ok('Data::Password::Entropy', 'Exporter');
}

&main();
# ------------------------------------------------------------------------------
sub main
{
    is(password_entropy(undef),	0, 'Undefined value');
}
# ------------------------------------------------------------------------------
1;