File perl-HTML-Scrubber-test_more-version.patch of Package perl-HTML-Scrubber

Index: HTML-Scrubber-0.09/t/00-compile.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/00-compile.t
+++ HTML-Scrubber-0.09/t/00-compile.t
@@ -2,6 +2,7 @@
 
 use strict;
 use warnings;
+use lib '__vendorperl__';
 
 use Test::More;
 
Index: HTML-Scrubber-0.09/t/000-report-versions.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/000-report-versions.t
+++ HTML-Scrubber-0.09/t/000-report-versions.t
@@ -1,6 +1,7 @@
 #!perl
 use warnings;
 use strict;
+use lib '__vendorperl__';
 use Test::More 0.94;
 
 # Include a cut-down version of YAML::Tiny so we don't introduce unnecessary
Index: HTML-Scrubber-0.09/t/03_more.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/03_more.t
+++ HTML-Scrubber-0.09/t/03_more.t
@@ -3,6 +3,7 @@
 
 
 use strict;
+use lib '__vendorperl__';
 use Test::More tests => 7;
 BEGIN { $^W = 1 }
 
Index: HTML-Scrubber-0.09/t/04_style_script.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/04_style_script.t
+++ HTML-Scrubber-0.09/t/04_style_script.t
@@ -1,6 +1,7 @@
 # perl Makefile.PL && nmake realclean && cls && perl Makefile.PL && nmake test
 
 use strict;
+use lib '__vendorperl__';
 use Test::More tests => 9;
 BEGIN { $^W = 1 }
 
@@ -24,4 +25,4 @@ is( $s->scrub($html), 'start  middle in
 
 $s->style(1);
 is( $s->style, 1, 'style on');
-is( $s->scrub($html), 'start in the style middle in the script end', 'style off and script off');
\ No newline at end of file
+is( $s->scrub($html), 'start in the style middle in the script end', 'style off and script off');
Index: HTML-Scrubber-0.09/t/05_pi_comment.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/05_pi_comment.t
+++ HTML-Scrubber-0.09/t/05_pi_comment.t
@@ -1,6 +1,7 @@
 # perl Makefile.PL && nmake realclean && cls && perl Makefile.PL && nmake test
 
 use strict;
+use lib '__vendorperl__';
 use Test::More tests => 9;
 BEGIN { $^W = 1 }
 
@@ -24,4 +25,4 @@ is( $s->scrub($html), 'start <!--comment
 
 $s->process(1);
 is( $s->process, 1, 'process on');
-is( $s->scrub($html), 'start <!--comment--> mid1 <?html pi> mid2 <?xml pi?> end', 'process on');
\ No newline at end of file
+is( $s->scrub($html), 'start <!--comment--> mid1 <?html pi> mid2 <?xml pi?> end', 'process on');
Index: HTML-Scrubber-0.09/t/06_scrub_file.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/06_scrub_file.t
+++ HTML-Scrubber-0.09/t/06_scrub_file.t
@@ -1,6 +1,7 @@
 # perl Makefile.PL && nmake realclean && cls && perl Makefile.PL && nmake test
 
 use strict;
+use lib '__vendorperl__';
 use File::Temp qw/ tempfile tempdir /;
 use Test::More tests => 10;
 BEGIN { $^W = 1 }
Index: HTML-Scrubber-0.09/t/07_booleans.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/07_booleans.t
+++ HTML-Scrubber-0.09/t/07_booleans.t
@@ -1,6 +1,7 @@
 # 07_booleans.t
 
 use strict;
+use lib '__vendorperl__';
 use File::Spec;
 use Test::More tests => 9;
 BEGIN { $^W = 1 }
Index: HTML-Scrubber-0.09/t/author-critic.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/author-critic.t
+++ HTML-Scrubber-0.09/t/author-critic.t
@@ -1,4 +1,5 @@
 #!perl
+use lib '__vendorperl__';
 
 BEGIN {
   unless ($ENV{AUTHOR_TESTING}) {
Index: HTML-Scrubber-0.09/t/release-dist-manifest.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/release-dist-manifest.t
+++ HTML-Scrubber-0.09/t/release-dist-manifest.t
@@ -1,4 +1,5 @@
 #!perl
+use lib '__vendorperl__';
 
 BEGIN {
   unless ($ENV{RELEASE_TESTING}) {
Index: HTML-Scrubber-0.09/t/release-distmeta.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/release-distmeta.t
+++ HTML-Scrubber-0.09/t/release-distmeta.t
@@ -1,4 +1,5 @@
 #!perl
+use lib '__vendorperl__';
 
 BEGIN {
   unless ($ENV{RELEASE_TESTING}) {
Index: HTML-Scrubber-0.09/t/release-eol.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/release-eol.t
+++ HTML-Scrubber-0.09/t/release-eol.t
@@ -1,4 +1,5 @@
 
+use lib '__vendorperl__';
 BEGIN {
   unless ($ENV{RELEASE_TESTING}) {
     require Test::More;
Index: HTML-Scrubber-0.09/t/release-has-version.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/release-has-version.t
+++ HTML-Scrubber-0.09/t/release-has-version.t
@@ -1,4 +1,5 @@
 #!perl
+use lib '__vendorperl__';
 
 BEGIN {
   unless ($ENV{RELEASE_TESTING}) {
Index: HTML-Scrubber-0.09/t/release-minimum-version.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/release-minimum-version.t
+++ HTML-Scrubber-0.09/t/release-minimum-version.t
@@ -1,4 +1,5 @@
 #!perl
+use lib '__vendorperl__';
 
 BEGIN {
   unless ($ENV{RELEASE_TESTING}) {
Index: HTML-Scrubber-0.09/t/release-no-tabs.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/release-no-tabs.t
+++ HTML-Scrubber-0.09/t/release-no-tabs.t
@@ -1,4 +1,5 @@
 
+use lib '__vendorperl__';
 BEGIN {
   unless ($ENV{RELEASE_TESTING}) {
     require Test::More;
Index: HTML-Scrubber-0.09/t/release-pod-spell.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/release-pod-spell.t
+++ HTML-Scrubber-0.09/t/release-pod-spell.t
@@ -1,4 +1,5 @@
 #!perl
+use lib '__vendorperl__';
 
 BEGIN {
   unless ($ENV{RELEASE_TESTING}) {
Index: HTML-Scrubber-0.09/t/release-pod-syntax.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/release-pod-syntax.t
+++ HTML-Scrubber-0.09/t/release-pod-syntax.t
@@ -1,4 +1,5 @@
 #!perl
+use lib '__vendorperl__';
 
 BEGIN {
   unless ($ENV{RELEASE_TESTING}) {
Index: HTML-Scrubber-0.09/t/release-portability.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/release-portability.t
+++ HTML-Scrubber-0.09/t/release-portability.t
@@ -1,4 +1,5 @@
 #!perl
+use lib '__vendorperl__';
 
 BEGIN {
   unless ($ENV{RELEASE_TESTING}) {
Index: HTML-Scrubber-0.09/t/release-synopsis.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/release-synopsis.t
+++ HTML-Scrubber-0.09/t/release-synopsis.t
@@ -1,4 +1,5 @@
 #!perl
+use lib '__vendorperl__';
 
 BEGIN {
   unless ($ENV{RELEASE_TESTING}) {
Index: HTML-Scrubber-0.09/t/release-unused-vars.t
===================================================================
--- HTML-Scrubber-0.09.orig/t/release-unused-vars.t
+++ HTML-Scrubber-0.09/t/release-unused-vars.t
@@ -1,4 +1,5 @@
 #!perl
+use lib '__vendorperl__';
 
 BEGIN {
   unless ($ENV{RELEASE_TESTING}) {
openSUSE Build Service is sponsored by