Update of /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest/Recorder
In directory sc8-pr-cvs1:/tmp/cvs-serv2467
Modified Files:
Config.pm
Log Message:
Add $DEFAULT_ACTION
Index: Config.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest/Recorder/Config.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Config.pm 22 Apr 2003 22:58:42 -0000 1.3
--- Config.pm 7 Sep 2003 19:20:03 -0000 1.4
***************
*** 3,7 ****
use base qw(Exporter);
! @EXPORT_OK = qw(%DISPATCH);
use HTTP::WebTest::Recorder::Actions qw(:all);
--- 3,7 ----
use base qw(Exporter);
! @EXPORT_OK = qw(%DISPATCH $DEFAULT_ACTION);
use HTTP::WebTest::Recorder::Actions qw(:all);
***************
*** 16,19 ****
--- 16,21 ----
response_content => \&response_content_action,
wtscript => \&wtscript_action);
+
+ $DEFAULT_ACTION = 'list';
1;
|