Add test controller with its own meta method, still works
[catagits/Catalyst-Runtime.git] / TODO
1 Known Bugs:
2
3    - Bug ->go or ->visit causes actions which have Args or CaptureArgs caled
4      twice when called via ->go or ->visit.
5
6      Test app: http://github.com/bobtfish/catalyst-app-bug-go_chain/tree/master
7
8
9    - Certain errors in your application to do with using other code which does
10      not exist can cause an 'Unknown error' issue.
11
12      Test app: http://github.com/bobtfish/catalyst-app-bug-unknown-error/tree/master
13      < rafl> 21:13:03 < vincent> hah, Class::MOP::Method::Generated->_eval_closure
14      < rafl> 21:13:40 < vincent> right, shove a local $@ in there
15      < rafl> i can do that and add tests in an hour or two
16
17
18    - -restarter.t will fail if you don't have ::StashChange installed, and
19       also quite often at other times.
20
21
22    - Catalyst::Test - bugs with Moosification (Khisanth/kane)
23
24    - Attribute called 'actions' in controllers - needs to be renamed to _actions.
25
26 Compatibility warnings to add:
27
28    - $self->config should warn as config should only ever be called as a
29      class method.
30
31 Proposed functionality / feature additions:
32
33     - Log setup needs to be less lame, so Catalyst::Plugin::Log::* can die
34       in a fire. Having $c->log_class would be a good start. kane volunteered
35       to do some of this.
36
37       Simple example: Catalyst::Plugin::Log::Colorful should just be a
38       subclass of Catalyst::Log, no ::Plugin:: needed.
39
40       See also: Catalyst::Plugin::Log::Dispatch and
41       http://github.com/willert/catalyst-plugin-log4perl-simple/tree
42
43