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

use_ok("Acme::Magic8Ball", "ask");

ok(ask("Will this work?"), "Got an answer");
ok(ask("Will this work again?"), "Got another answer");
is("You must ask a question!",ask(),"Should catch an empty question");