r55333 - in /branches/upstream/libtest-www-selenium-perl/current: Changes MANIFEST META.yml Makefile.PL lib/Test/WWW/Selenium.pm old-changes t/WWW/Selenium.pm t/selenium-rc.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Apr 3 03:44:08 UTC 2010


Author: jawnsy-guest
Date: Sat Apr  3 03:44:00 2010
New Revision: 55333

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=55333
Log:
[svn-upgrade] Integrating new upstream version, libtest-www-selenium-perl (1.22)

Removed:
    branches/upstream/libtest-www-selenium-perl/current/META.yml
    branches/upstream/libtest-www-selenium-perl/current/old-changes
Modified:
    branches/upstream/libtest-www-selenium-perl/current/Changes
    branches/upstream/libtest-www-selenium-perl/current/MANIFEST
    branches/upstream/libtest-www-selenium-perl/current/Makefile.PL
    branches/upstream/libtest-www-selenium-perl/current/lib/Test/WWW/Selenium.pm
    branches/upstream/libtest-www-selenium-perl/current/t/WWW/Selenium.pm
    branches/upstream/libtest-www-selenium-perl/current/t/selenium-rc.t

Modified: branches/upstream/libtest-www-selenium-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-www-selenium-perl/current/Changes?rev=55333&op=diff
==============================================================================
--- branches/upstream/libtest-www-selenium-perl/current/Changes (original)
+++ branches/upstream/libtest-www-selenium-perl/current/Changes Sat Apr  3 03:44:00 2010
@@ -1,4 +1,9 @@
 Revision history for Perl extension Test::WWW::Selenium.
+
+1.22 - Fri Apr  2 10:51:58 PDT 2010
+  - Update URI::Encode dependency so we can depend on a consistent
+    encoding of *firefox to %2Afirefox.
+  - No code changes, just test fixes.
 
 1.21 - Wed Dec 30 14:58:07 PST 2009
   - Add error_callback() patch from Derek Wueppelmann

Modified: branches/upstream/libtest-www-selenium-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-www-selenium-perl/current/MANIFEST?rev=55333&op=diff
==============================================================================
--- branches/upstream/libtest-www-selenium-perl/current/MANIFEST (original)
+++ branches/upstream/libtest-www-selenium-perl/current/MANIFEST Sat Apr  3 03:44:00 2010
@@ -17,9 +17,7 @@
 lib/WWW/Selenium/Util.pm
 Makefile.PL
 MANIFEST			This list of files
-META.yml
 mypod2html.pl
-old-changes
 pom.xml
 README
 t/01_load.t

Modified: branches/upstream/libtest-www-selenium-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-www-selenium-perl/current/Makefile.PL?rev=55333&op=diff
==============================================================================
--- branches/upstream/libtest-www-selenium-perl/current/Makefile.PL (original)
+++ branches/upstream/libtest-www-selenium-perl/current/Makefile.PL Sat Apr  3 03:44:00 2010
@@ -1,17 +1,17 @@
 #!/usr/bin/perl -w
 use warnings;
 use strict;
-use inc::Module::Install;
+use inc::Module::Install 0.89;
 
 # Need to explicitly pre-load this so it doesn't conflict with a mocked one
 # created by loading Test::Mock::LWP
-use LWP::UserAgent;
+eval "require LWP::UserAgent";
 
 name            'Test-WWW-Selenium';
 all_from        'lib/Test/WWW/Selenium.pm';
 author          'Luke Closs <test-www-selenium at awesnob.com>';
 requires       'LWP::UserAgent'  => 0;
-requires       'URI::Escape'     => '1.31';
+requires       'URI::Escape'     => '3.30';
 build_requires 'Test::More'      => '0.42';
 build_requires 'Test::Exception' => 0;
 build_requires 'Test::Mock::LWP' => 0;
@@ -22,4 +22,5 @@
 auto_install;
 
 # Generate the Makefile
+repository 'http://github.com/lukec/cpan-selenium-rc-perl';
 WriteAll;

Modified: branches/upstream/libtest-www-selenium-perl/current/lib/Test/WWW/Selenium.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-www-selenium-perl/current/lib/Test/WWW/Selenium.pm?rev=55333&op=diff
==============================================================================
--- branches/upstream/libtest-www-selenium-perl/current/lib/Test/WWW/Selenium.pm (original)
+++ branches/upstream/libtest-www-selenium-perl/current/lib/Test/WWW/Selenium.pm Sat Apr  3 03:44:00 2010
@@ -4,7 +4,7 @@
 use base qw(WWW::Selenium);
 use Carp qw(croak);
 
-our $VERSION = '1.21';
+our $VERSION = '1.22';
 
 =head1 NAME
 

Modified: branches/upstream/libtest-www-selenium-perl/current/t/WWW/Selenium.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-www-selenium-perl/current/t/WWW/Selenium.pm?rev=55333&op=diff
==============================================================================
--- branches/upstream/libtest-www-selenium-perl/current/t/WWW/Selenium.pm (original)
+++ branches/upstream/libtest-www-selenium-perl/current/t/WWW/Selenium.pm Sat Apr  3 03:44:00 2010
@@ -33,7 +33,7 @@
     # Test that the session was started as we expect
     my $req_args = $Mock_req->new_args;
     my $url = "http://$opts{host}:$opts{port}/selenium-server/driver/?" .
-        'cmd=getNewBrowserSession&1=*firefox&2=http%3A%2F%2Fexample.com';
+        'cmd=getNewBrowserSession&1=%2Afirefox&2=http%3A%2F%2Fexample.com';
     is_deeply $req_args, [ 'HTTP::Request', 'GET', $url ];
 
     return $self;

Modified: branches/upstream/libtest-www-selenium-perl/current/t/selenium-rc.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-www-selenium-perl/current/t/selenium-rc.t?rev=55333&op=diff
==============================================================================
--- branches/upstream/libtest-www-selenium-perl/current/t/selenium-rc.t (original)
+++ branches/upstream/libtest-www-selenium-perl/current/t/selenium-rc.t Sat Apr  3 03:44:00 2010
@@ -28,7 +28,7 @@
         $Mock_resp->mock( content => sub {'OK,SESSION_ID'} );
         $sel->start;
         is $sel->{session_id}, 'SESSION_ID';
-        req_ok('cmd=getNewBrowserSession&1=*firefox&2=http%3A%2F%2Ffoo.com');
+        req_ok('cmd=getNewBrowserSession&1=%2Afirefox&2=http%3A%2F%2Ffoo.com');
         $Mock_resp->mock( content => sub { 'OK' } );
         $sel->open;
     }




More information about the Pkg-perl-cvs-commits mailing list