1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Disable test which requires Internet
This test fails when we have Internet access disabled during
builds. Disable it.
Author: Andrew Ruthven <andrew@etc.gen.nz>
Forwarded: not-needed
Last-Update: 2025-03-22
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/t/embedded_style_block.t
+++ b/t/embedded_style_block.t
@@ -7,6 +7,8 @@
use CSS::Inliner;
use LWP::Simple;
+plan skip_all => 'Internet connectivity required, skipped test.';
+
use FindBin qw($Bin);
my $html_path = "$Bin/html/";
|