From: Shawn M Moore Date: Mon, 29 Sep 2008 02:51:08 +0000 (+0000) Subject: Delete the role test for now, we need to track Class methods and all sorts of things... X-Git-Tag: 0.19~174 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=95700a5cb9863c833c91f366337c9082a7f245a5;p=gitmo%2FMouse.git Delete the role test for now, we need to track Class methods and all sorts of things first --- diff --git a/t/404-methods.t b/t/404-methods.t deleted file mode 100644 index f3d4553..0000000 --- a/t/404-methods.t +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env perl -use strict; -use warnings; -use Test::More; -BEGIN { - if (eval "require Class::Method::Modifiers; 1") { - plan tests => 1; - } - else { - plan skip_all => "Class::Method::Modifiers required for this test"; - } -} -use Mouse::Util ':test'; - -my @calls; - -do { - package Role; - use Mouse::Role; - - sub method { - push @calls, 'Role::method'; - }; - - no Mouse::Role; -}; - -do { - package Class; - use Mouse; - with 'Role'; - - no Mouse; -}; - -Class->method; -is_deeply([splice @calls], [ - 'Role::method', -]); -