summaryrefslogtreecommitdiff
path: root/docutils/test/test_transforms/test_peps.py
diff options
context:
space:
mode:
author(no author) <(no author)@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2003-07-02 17:51:01 +0000
committer(no author) <(no author)@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2003-07-02 17:51:01 +0000
commitedf2f3bec1de42965e347eb808f8604151c35bdb (patch)
tree783ec29ed403599a0717019ac974ed2fd7366207 /docutils/test/test_transforms/test_peps.py
parent97e20d03d7a4f773f24b082b76a34411acc1fefd (diff)
downloaddocutils-ax.tar.gz
This commit was manufactured by cvs2svn to create branch 'ax'.ax
git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/ax@1551 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/test/test_transforms/test_peps.py')
-rw-r--r--docutils/test/test_transforms/test_peps.py68
1 files changed, 0 insertions, 68 deletions
diff --git a/docutils/test/test_transforms/test_peps.py b/docutils/test/test_transforms/test_peps.py
deleted file mode 100644
index 28fa68af2..000000000
--- a/docutils/test/test_transforms/test_peps.py
+++ /dev/null
@@ -1,68 +0,0 @@
-#! /usr/bin/env python
-
-# Author: David Goodger
-# Contact: goodger@users.sourceforge.net
-# Revision: $Revision$
-# Date: $Date$
-# Copyright: This module has been placed in the public domain.
-
-"""
-Tests for docutils.transforms.peps.
-"""
-
-from __init__ import DocutilsTestSupport
-from docutils.transforms.peps import TargetNotes
-from docutils.parsers.rst import Parser
-
-
-def suite():
- parser = Parser()
- s = DocutilsTestSupport.TransformTestSuite(parser)
- s.generateTests(totest)
- return s
-
-totest = {}
-
-totest['target_notes'] = ((TargetNotes,), [
-["""\
-No references or targets exist, therefore
-no "References" section should be generated.
-""",
-"""\
-<document source="test data">
- <paragraph>
- No references or targets exist, therefore
- no "References" section should be generated.
-"""],
-["""\
-A target exists, here's the reference_.
-A "References" section should be generated.
-
-.. _reference: http://www.example.org
-""",
-"""\
-<document source="test data">
- <paragraph>
- A target exists, here's the \n\
- <reference refname="reference">
- reference
- \n\
- <footnote_reference auto="1" id="id3" refname="target_note: id2">
- .
- A "References" section should be generated.
- <target id="reference" name="reference" refuri="http://www.example.org">
- <section id="id1">
- <title>
- References
- <footnote auto="1" id="id2" name="target_note: id2">
- <paragraph>
- <reference refuri="http://www.example.org">
- http://www.example.org
-"""],
-])
-
-
-
-if __name__ == '__main__':
- import unittest
- unittest.main(defaultTest='suite')