r56395 - in /trunk/libbusiness-onlinepayment-ippay-perl: debian/changelog t/card.t t/check.t

ivan at users.alioth.debian.org ivan at users.alioth.debian.org
Sun Apr 18 07:50:12 UTC 2010


Author: ivan
Date: Sun Apr 18 07:50:02 2010
New Revision: 56395

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=56395
Log:
skip tests that require network access

Modified:
    trunk/libbusiness-onlinepayment-ippay-perl/debian/changelog
    trunk/libbusiness-onlinepayment-ippay-perl/t/card.t
    trunk/libbusiness-onlinepayment-ippay-perl/t/check.t

Modified: trunk/libbusiness-onlinepayment-ippay-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libbusiness-onlinepayment-ippay-perl/debian/changelog?rev=56395&op=diff
==============================================================================
--- trunk/libbusiness-onlinepayment-ippay-perl/debian/changelog (original)
+++ trunk/libbusiness-onlinepayment-ippay-perl/debian/changelog Sun Apr 18 07:50:02 2010
@@ -11,6 +11,7 @@
     B:OP:HTTPS
   * Add Dep/B-D-I on liburi-perl, patch from Hideki Yamane, thanks!
     (closes: Bug#577358)
+  * Skip tests which require network access
 
  -- Ivan Kohler <ivan-debian at 420.am>  Sun, 18 Apr 2010 00:04:13 -0700
 

Modified: trunk/libbusiness-onlinepayment-ippay-perl/t/card.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libbusiness-onlinepayment-ippay-perl/t/card.t?rev=56395&op=diff
==============================================================================
--- trunk/libbusiness-onlinepayment-ippay-perl/t/card.t (original)
+++ trunk/libbusiness-onlinepayment-ippay-perl/t/card.t Sun Apr 18 07:50:02 2010
@@ -1,11 +1,11 @@
 #!/usr/bin/perl -w
 
-use Test::More;
+use Test::More skip_all => 'Skip network tests in Debian build';
 
 my($login, $password, @opts) = ('TESTMERCHANT', '',
                                 'default_Origin' => 'RECURRING' );
 plan tests => 43;
-  
+
 use_ok 'Business::OnlinePayment';
 
 my %content = (

Modified: trunk/libbusiness-onlinepayment-ippay-perl/t/check.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libbusiness-onlinepayment-ippay-perl/t/check.t?rev=56395&op=diff
==============================================================================
--- trunk/libbusiness-onlinepayment-ippay-perl/t/check.t (original)
+++ trunk/libbusiness-onlinepayment-ippay-perl/t/check.t Sun Apr 18 07:50:02 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -w
 
-use Test::More;
+use Test::More skip_all => 'Skip network tests in Debian build';
 
 my($login, $password, %opt) = ('TESTMERCHANT', '', 'Origin' => 'RECURRING' );
 plan tests => 16;




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