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 t::lib::Mother 'hello';

ok(t::lib::Mother->can('import'));
ok(t::lib::Mother->can('hello'));

# Check that the import worked
ok(defined &main::hello, 'hello imported');
is(hello(), 'Hello!');

done_testing;