adjust template i18n test to use the real macro parser

This commit is contained in:
Graham Knop 2009-02-21 22:17:24 +00:00
parent f509317d55
commit e596489f10
2 changed files with 36 additions and 23 deletions

View file

@ -0,0 +1,17 @@
package WebGUI::Macro::Callback;
use strict;
use warnings;
my $callback = sub {''};
sub process {
return $callback->(@_);
}
sub setCallback {
$callback = shift;
}
1;