X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F001_mouse%2F028-subclass-attr.t;h=35430a5f63ee86c823b70d9d0238a1c0b391f990;hb=2c689df48deeec2e551a24b58558ca370ad24f54;hp=8abd69d758df0d86ff87e9439ec264f037bb87ed;hpb=cfdb93c63c45d0e81e858631b62a7d4d7be87842;p=gitmo%2FMouse.git diff --git a/t/001_mouse/028-subclass-attr.t b/t/001_mouse/028-subclass-attr.t index 8abd69d..35430a5 100644 --- a/t/001_mouse/028-subclass-attr.t +++ b/t/001_mouse/028-subclass-attr.t @@ -50,7 +50,7 @@ with_immutable { CA->meta->get_attribute('ca'), Class->meta->get_attribute('class'), )], "correct get_all_attributes"); -} qw(Class CA CB CC); +} 'Class', 'CA', 'CB', 'CC'; do { package Foo; @@ -90,7 +90,7 @@ with_immutable { is_deeply([Bar->meta->get_all_attributes], [ Bar->meta->get_attribute('attr'), ], "correct get_all_attributes"); -} qw(Foo Bar); +} 'Foo', 'Bar'; done_testing;