Port Catalyst::Test to Sub::Exporter.
[catagits/Catalyst-Runtime.git] / TODO
1   - Get rid of Class::Inspector. Class::MOP has 'is_class_loaded' and
2     'load_class', which is all we use Class::Inspector for.
3
4   - Make Catalyst::Test use Sub::Exporter or maybe Moose::Exporter.
5
6   - Add Class::Accessor compats
7     * Catalyst::Request
8     * Catalyst::Response
9     * Catalyst::Dispatcher
10     * Catalyst::Request::Upload
11     * Catalyst::Action
12     * Catalyst::ActionChain
13     * Catalyst::ActionContainer
14
15   - Make classes immutable at setup() time
16
17
18   - GRODITI's list:
19     * Update Test suite to not assume MyApp ISA Controller
20       - After that I'll set up attr handlers that will output helpful
21         error messages when you do it as well as how to fix it.
22     * comments marked /Moose TODO/i in the code
23     * Fix the CDI compat hack so we can start moving to immutable
24     * Profile before and after immutable.
25     * Now would be a good time to lay ground for the App / Ctx split
26     * Howto mantain branch in sync with the latest checkins ?
27     * Eliminate all instances of $instance->{$key}
28     * MooseX::Emulate::CAF seems to be working like a charm :)
29     * General code cleanups can't hurt
30     * How do we move from NEXT to C3 ? I have never used either of them
31       - What does the lineraized mro look like when we are using moose 
32         method modifiers?
33         - Does they all get clumped together or what? Is it a non-issue?