Update of /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest
In directory sc8-pr-cvs1:/tmp/cvs-serv26219/lib/HTTP/WebTest
Modified Files:
Recorder.pm
Removed Files:
Exceptions.pm Controller.pm Action.pm
Log Message:
Move everything in HTTP::WebTest::Recorder namespace
Index: Recorder.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest-Recorder/lib/HTTP/WebTest/Recorder.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Recorder.pm 18 Jan 2003 17:03:59 -0000 1.3
--- Recorder.pm 25 Jan 2003 14:54:52 -0000 1.4
***************
*** 21,29 ****
use strict;
- use HTTP::WebTest::Controller;
use HTTP::WebTest::Test;
use HTTP::WebTest::Utils qw(make_access_method);
use LWP::UserAgent;
# constructor
sub new {
--- 21,30 ----
use strict;
use HTTP::WebTest::Test;
use HTTP::WebTest::Utils qw(make_access_method);
use LWP::UserAgent;
+ use HTTP::WebTest::Recorder::Controller;
+
# constructor
sub new {
***************
*** 43,48 ****
*ui_path = make_access_method('UI_PATH');
# controller object
! *controller = make_access_method('CONTROLLER',
! sub { HTTP::WebTest::Controller->new } );
# user agent to do proxying
*user_agent = make_access_method('USER_AGENT', sub { LWP::UserAgent->new });
--- 44,50 ----
*ui_path = make_access_method('UI_PATH');
# controller object
! *controller =
! make_access_method('CONTROLLER',
! sub { HTTP::WebTest::Recorder::Controller->new } );
# user agent to do proxying
*user_agent = make_access_method('USER_AGENT', sub { LWP::UserAgent->new });
--- Exceptions.pm DELETED ---
--- Controller.pm DELETED ---
--- Action.pm DELETED ---
|