Update of /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest/Recorder
In directory sc8-pr-cvs1:/tmp/cvs-serv27675/lib/HTTP/WebTest/Recorder
Added Files:
Config.pm
Log Message:
Added
--- NEW FILE: Config.pm ---
package HTTP::WebTest::Recorder::Config;
use base qw(Exporter);
@EXPORT_OK = qw(%DISPATCH);
use HTTP::WebTest::Recorder::Actions qw(:all);
%DISPATCH = (render_template => \&render_template_action,
list => \&list_action,
request => \&request_action,
response_content => \&response_content_action,
wtscript => \&wtscript_action,
enable => \&enable_action,
delete => \&delete_action,
filter => \&filter_action,
default => \&default_action);
1;
|