]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/bugs/t__47__rst.t_should_call_python3__44___not_python.mdwn
(no commit message)
[git.ikiwiki.info.git] / doc / bugs / t__47__rst.t_should_call_python3__44___not_python.mdwn
1 Now that the rst plugin uses Python3, the test should test docutils existence also with Python3:
3     --- rst.t.orig      2018-02-28 10:41:06.000000000 +0000
4     +++ rst.t   2018-03-03 17:17:23.862702468 +0000
5     @@ -3,7 +3,7 @@
6      use strict;
7      
8      BEGIN {
9     -   if (system("python -c 'import docutils.core'") != 0) {
10     +   if (system("python3 -c 'import docutils.core'") != 0) {
11                 eval 'use Test::More skip_all => "docutils not available"';
12         }
13      }