From: Guillermo Roditi Date: Fri, 18 Jul 2008 21:06:11 +0000 (+0000) Subject: stevan says "wont fix" X-Git-Tag: 0_55~47 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0c48d0c5b69e7866b805fc5e8f241c662ae24e82;p=gitmo%2FMoose.git stevan says "wont fix" --- diff --git a/t/100_bugs/018_modifiers_n_changed_superclasses.t b/t/100_bugs/018_modifiers_n_changed_superclasses.t deleted file mode 100644 index 015baf4..0000000 --- a/t/100_bugs/018_modifiers_n_changed_superclasses.t +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/perl - -use strict; -use warnings; - -use Test::More tests => 2; - -BEGIN { - use_ok('Moose'); -} - -{ - package Foo; - use Moose; - sub foo { 'foo' } - - package Bar; - use Moose; - sub foo { 'bar' } - - package FooBar; - use Moose; - extends 'Foo'; - around foo => sub{ shift->(@_) }; -} - -FooBar->meta->superclasses('Bar'); -is(FooBar->foo, 'bar', 'method modified changed along with metaclass');