diff options
| author | wiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2005-05-18 22:31:15 +0000 |
|---|---|---|
| committer | wiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2005-05-18 22:31:15 +0000 |
| commit | 244755b3c5f1885ae7dae299fe05631409dfc08d (patch) | |
| tree | 1e7c48935a685982302acd87517727babcf6fa49 | |
| parent | e699a07e2ed0da73245f131e5026011b0b4ac2a4 (diff) | |
| download | docutils-244755b3c5f1885ae7dae299fe05631409dfc08d.tar.gz | |
removed test for ":figwidth: image" because it has different output
depending on whether PIL is installed or not;
need to write another test
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3352 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
| -rwxr-xr-x | docutils/test/test_parsers/test_rst/test_directives/test_figures.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/docutils/test/test_parsers/test_rst/test_directives/test_figures.py b/docutils/test/test_parsers/test_rst/test_directives/test_figures.py index 7e63fda16..91fd91596 100755 --- a/docutils/test/test_parsers/test_rst/test_directives/test_figures.py +++ b/docutils/test/test_parsers/test_rst/test_directives/test_figures.py @@ -10,7 +10,6 @@ Tests for images.py figure directives. """ -import os.path from __init__ import DocutilsTestSupport def suite(): @@ -18,9 +17,6 @@ def suite(): s.generateTests(totest) return s -mydir = 'test_parsers/test_rst/test_directives/' -biohazard = os.path.join(mydir, '../../../../docs/user/rst/images/biohazard.png') - totest = {} totest['figures'] = [ @@ -290,15 +286,6 @@ Testing for line-leaks: <figure> <image uri="picture.png"> """], -["""\ -.. figure:: %s - :figwidth: image -""" % biohazard, -"""\ -<document source="test data"> - <figure width="16"> - <image uri="test_parsers/test_rst/test_directives/../../../../docs/user/rst/images/biohazard.png"> -"""], ] |
