Newer Older
10 lines | 0.17kb
test cleanup
Yuki Kimoto authored on 2011-08-15
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 cleanup
Yuki Kimoto authored on 2011-08-15
8
};
9

            
10
1;