Remove command test for #5517.

We need a better test that works cross-platform.
Until then, removing this.

Closes #5528.
This commit is contained in:
John MacFarlane 2019-05-28 12:45:02 -07:00
parent 3f57f49033
commit 2ad5dacf87

View file

@ -1,32 +0,0 @@
Use epub output to trigger `downloadOrRead` in `Text.Pandoc.Class`
in order to test `file:` URL-scheme handling.
There are no relative `file:` URLs, so we cannot
test with an actual file, since we don't know the
current working directory. Instead, we use `/dev/null`
as a file that certainly exists, redirect stderr
to stdout and check that there is no warning.
```
% pandoc -M title=test -f native -t epub -o /dev/null 2>&1
[Para [Image ("",[],[]) [] ("file:/dev/null","")]]
^D
```
```
% pandoc -M title=test -f native -t epub -o /dev/null 2>&1
[Para [Image ("",[],[]) [] ("file:///dev/null","")]]
^D
```
```
% pandoc -M title=test -f native -t epub -o /dev/null 2>&1
[Para [Image ("",[],[]) [] ("file://localhost/dev/null","")]]
^D
```
```
% pandoc -M title=test -f native -t epub -o /dev/null 2>&1
[Para [Image ("",[],[]) [] ("file:lalune.jpg","")]]
^D
```