From ec987f518b6bbdb68129b92742e7d6727c3135c4 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 25 Jun 2009 09:41:16 -0500 Subject: this todo test now passes --- t/022-replaced-constructor.t | 3 --- 1 file changed, 3 deletions(-) (limited to 't/022-replaced-constructor.t') 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)'); -} -- cgit v1.2.3-54-g00ecf