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 MooseX::Method::Signatures;

my @methods = (method { 1 }, method { 2 }, method { 3 });
is(scalar @methods, 3);

isa_ok($_, 'Moose::Meta::Method') for @methods;