Mercurial > pub > Impl
diff Lib/IMPL/Test/Unit.pm @ 97:964587c5183c
Added SecureCall to Web QueryHandlers stack
many bug fixes to Security and Web Application modules
author | wizard |
---|---|
date | Tue, 04 May 2010 04:04:37 +0400 |
parents | 74bae30eb25e |
children | f8de52d3c112 |
line wrap: on
line diff
--- a/Lib/IMPL/Test/Unit.pm Fri Apr 30 15:03:38 2010 +0400 +++ b/Lib/IMPL/Test/Unit.pm Tue May 04 04:04:37 2010 +0400 @@ -39,7 +39,7 @@ sub Cleanup { my ($this,$session) = @_; - $session->{$_} = $this->$_() foreach map $_->DataList, $this->get_meta('IMPL::Test::Unit::SharedData'); + $session->{$_} = $this->$_() foreach map $_->DataList, $this->get_meta('IMPL::Test::Unit::SharedData',undef,1); 1; } @@ -53,7 +53,7 @@ sub InitTest { my ($this,$session) = @_; - $this->$_($session->{$_}) foreach map $_->DataList, $this->get_meta('IMPL::Test::Unit::SharedData'); + $this->$_($session->{$_}) foreach map $_->DataList, $this->get_meta('IMPL::Test::Unit::SharedData',undef,1); } sub FinishUnit {