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

use lib 't/';

use Test::More tests => 5;
use Test::NoWarnings;
use Foo;

ok( Foo->can('foo'),     "Method foo not private" );
ok( !Foo->can('bar'),     "Method bar is private" );
ok( Foo->can('baz'),     "Method baz not private" );

is( Foo->baz(), 44,  "Method baz works" );