The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -w
use strict;
use utf8;
use Test::More;

use Growl::NotifySend;

Growl::NotifySend->show(
    summary => 'Testing Growl::NotifySend',
    body    => 'こんにちはこんにちは!' . "\n",
);

pass;

done_testing;