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

BEGIN { use_ok 'Object::Method' }

package Foo;
use Object::Method ();

package main;
my $o = bless {}, "Foo";
ok(! $o->can('method') );

done_testing;