From: Dave Rolsky <autarch@urth.org>
Date: Sun, 13 Feb 2011 23:04:24 +0000 (-0600)
Subject: My previous role preservation fix made a todo test pass, so I moved the test and... 
X-Git-Tag: 1.22~4
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=415572b72d8e6cc4a0fd8c05466ea60ee25a375b;p=gitmo%2FMoose.git

My previous role preservation fix made a todo test pass, so I moved the test and un-TODO-ed it
---

diff --git a/t/600_todo_tests/007_application_metarole_compat.t b/t/100_bugs/031_application_metarole_compat.t
similarity index 93%
rename from t/600_todo_tests/007_application_metarole_compat.t
rename to t/100_bugs/031_application_metarole_compat.t
index b141e83..3079866 100644
--- a/t/600_todo_tests/007_application_metarole_compat.t
+++ b/t/100_bugs/031_application_metarole_compat.t
@@ -51,9 +51,7 @@ BEGIN {
 {
     package Child;
     use Moose -traits => 'Bar';
-    { our $TODO; local $TODO = "no idea what's going on here";
     ::is( ::exception { extends 'Parent' }, undef );
-    }
 }
 
 done_testing;