Update of /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest/Action
In directory sc8-pr-cvs1:/tmp/cvs-serv11556/lib/HTTP/WebTest/Action
Added Files:
Enable.pm
Log Message:
Added
--- NEW FILE: Enable.pm ---
package HTTP::WebTest::Action::Enable;
# $Id: Enable.pm,v 1.1 2003/01/24 09:21:44 m_ilya Exp $
use strict;
use base qw(HTTP::WebTest::Action);
sub execute {
my $self = shift;
my $controller = shift;
my $enable = $controller->cgi->param('enable');
$controller->recorder->is_recording($enable);
$controller->redirect('list');
}
1;
|