summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-06-25 09:41:16 -0500
committerJesse Luehrs <doy@tozt.net>2009-06-25 09:41:16 -0500
commitec987f518b6bbdb68129b92742e7d6727c3135c4 (patch)
treea455641315bb0fed9223bad6d56eaf53f8c6ea52
parent944878d349d962e71aac5f0f14b6865939ee231e (diff)
downloadmoosex-nonmoose-ec987f518b6bbdb68129b92742e7d6727c3135c4.tar.gz
moosex-nonmoose-ec987f518b6bbdb68129b92742e7d6727c3135c4.zip
this todo test now passes
-rw-r--r--t/022-replaced-constructor.t3
1 files changed, 0 insertions, 3 deletions
diff --git a/t/022-replaced-constructor.t b/t/022-replaced-constructor.t
index fc4b5bb..c5498a5 100644
--- a/t/022-replaced-constructor.t
+++ b/t/022-replaced-constructor.t
@@ -49,8 +49,6 @@ is($method, Foo::Moose->meta->get_method('new'),
$foo = Foo::Moose->new;
ok($foo_constructed, 'method modifier called for the constructor (immutable)');
-TODO: {
-local $TODO = "not quite sure how to handle this (or if I even care)";
$foo_constructed = 0;
$method = Foo::Moose2->meta->get_method('new');
$foo = Foo::Moose2->new;
@@ -61,4 +59,3 @@ is($method, Foo::Moose2->meta->get_method('new'),
'make_immutable doesn\'t overwrite custom constructor');
$foo = Foo::Moose2->new;
ok($foo_constructed, 'custom constructor called (immutable)');
-}