Newer Older
10 lines | 0.17kb
test cleranup
Yuki Kimoto authored on 2011-08-10
1
package MyModel8::table2;
2
use MyModel8 -base;
3

            
4
has filter => sub {
cleanup
Yuki Kimoto authored on 2012-01-20
5
  {
6
    key3 => {out => sub { $_[0] * 2}, in => sub { $_[0] * 3}, end => sub { $_[0] * 4 }}
7
  }
test cleranup
Yuki Kimoto authored on 2011-08-10
8
};
9

            
10
1;