X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=t%2F101-meta-attribute.t;h=6986fd41cdfee75339ad498b9d9371cbe9674943;hp=4cafd880871f27545917fc2ca84a072961ad867b;hb=306290e864ac23e5f1692c8495b0c173081a1ebb;hpb=58af95b87869e95b132806405054324491903fa1 diff --git a/t/101-meta-attribute.t b/t/101-meta-attribute.t index 4cafd88..6986fd4 100644 --- a/t/101-meta-attribute.t +++ b/t/101-meta-attribute.t @@ -18,10 +18,10 @@ do { }; my $meta = Class->meta; -isa_ok($meta, 'Mouse::Class'); +isa_ok($meta, 'Mouse::Meta::Class'); my $attr = $meta->get_attribute('pawn'); -isa_ok($attr, 'Mouse::Attribute'); +isa_ok($attr, 'Mouse::Meta::Attribute'); can_ok($attr, qw(name class predicate clearer)); is($attr->name, 'pawn', 'attribute name');