Package: libtext-markdown-perl / 1.000031-2

autopkgtest.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: use installed script for autopkgtest
Origin: vendor
Forwarded: not needed
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2015-08-12

--- a/t/34commandlinemarkdown.t
+++ b/t/34commandlinemarkdown.t
@@ -9,8 +9,10 @@
 open my $file, '<', "$filename.xhtml" or die "Couldn't open $filename: $!";
 my $expected = do { local $/; <$file> };
 
+my $script = $ENV{ADTTMP} ? '/usr/bin/markdown' : "$Bin/../script/Markdown.pl";
+
 lives_ok {
-    require "$Bin/../script/Markdown.pl";
+    require "$script";
 } 'require Markdown.pl works';
 my $out = main();
 is($out, $expected, 'Markdown.pl does the right thing with the syntax guide');