X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/d18df453f55190d4807af324725ea82a8835d7fc..128fab1c278534d06763006ea8f6ee1138ae3045:/t/007broken_links.t diff --git a/t/007broken_links.t b/t/007broken_links.t index ee0021ef8..fbe5ea21b 100644 --- a/t/007broken_links.t +++ b/t/007broken_links.t @@ -8,9 +8,13 @@ use strict; use File::Find; -use LWP::Simple; -use Test::More tests => 1; -use URI::Find; +use Test::More; + +if (eval " use LWP::Simple; use URI::Find; 1 ") { + plan tests => 1; +} else { + plan skip_all => "LWP::Simple or URI::Find not installed"; +} my @fails; @@ -26,14 +30,15 @@ my $finder = URI::Find->new(sub { }); find(sub { + return unless -f $File::Find::name; open(FH, $File::Find::name) or return; my $text; { local $/; $text = ; } $finder->find(\$text); - }, "." -); + }, "./templates", "./doc", + ); if (@fails) { ok(0, join "\n", @fails);