What's the current approach to turning perlbugs into tests?

Should they be done as TODOs? Is there a distinct set of test files for
them? etc? Can they use Test::More?  etc. etc. etc.

e.g. http://bugs6.perl.org/rt2/Ticket/Display.html?id=5430

can have a fairly simple test like:

        package main;
        eval '::is(__PACKAGE__, "main", "Package is main inside eval")';
        package Foo;
        eval '::is(__PACKAGE__, "Foo", "Package is Foo inside eval")';

But how we actually get that into the core somewhere?

Tony

Reply via email to