tag 465642 patch
thanks
Attached please find the patch for the NMU to fix 465642 which I will
upload suddenly.
Don Armstrong
--
Cheop's Law: Nothing ever gets built on schedule or within budget.
-- Robert Heinlein _Time Enough For Love_ p242
http://www.donarmstrong.com http://rzlab.ucr.edu
diff -u libapp-cache-perl-0.33/debian/changelog libapp-cache-perl-0.33/debian/changelog
--- libapp-cache-perl-0.33/debian/changelog
+++ libapp-cache-perl-0.33/debian/changelog
@@ -1,3 +1,12 @@
+libapp-cache-perl (0.33-1.1) unstable; urgency=low
+
+ * Non Maintainer Upload
+ * Disable the $cache->url tests as there's no guarantee of network;
+ these should probably eventually be replaced by tests using a server
+ on some high port (closes: #465642)
+
+ -- Don Armstrong <[EMAIL PROTECTED]> Sat, 08 Mar 2008 03:33:44 -0800
+
libapp-cache-perl (0.33-1) unstable; urgency=low
* New Upstream Release
only in patch2:
unchanged:
--- libapp-cache-perl-0.33.orig/t/simple.t
+++ libapp-cache-perl-0.33/t/simple.t
@@ -1,6 +1,6 @@
#!perl
use strict;
-use Test::More tests => 36;
+use Test::More tests => 33;
use lib qw(lib t/lib);
use_ok('App::Cache');
use_ok('App::Cache::Test');
@@ -9,5 +9,6 @@
$cache->code;
$cache->file;
$cache->scratch;
-$cache->url;
+# We can't run this test because there's no guarantee of network.
+#$cache->url;