isa_ok(Foo->meta, 'Moose::Meta::Class');
is(Foo->meta->attribute_metaclass, 'My::Moose::Meta::Attribute', '... got our custom attr metaclass');
-isa_ok()
+isa_ok(Foo->meta->get_attribute('bar'), 'My::Moose::Meta::Attribute');
my $foo = Foo->new;
isa_ok($foo, 'Foo');