Super-hack for turning off Validation in Moose
Thanks to Sartak in #moose for this little gem of hack-tastic meta-fantastic goodness.
{
package Moose;
around has => sub {
my $orig = shift;
my $name = shift;
my %args = @_;
delete $args{isa};
$orig->($name, %args);
};
}