#! /usr/bin/env python # $Id: test_decorations.py 4667 2006-07-12 21:40:56Z wiemann $ # Author: David Goodger # Copyright: This module has been placed in the public domain. """ Tests for the "header" & "footer" directives. """ from .__init__ import DocutilsTestSupport def suite(): s = DocutilsTestSupport.ParserTestSuite() s.generateTests(totest) return s totest = {} totest['headers'] = [ ["""\ .. header:: a paragraph for the header """, """\
a paragraph for the header """], ["""\ .. header:: """, """\ Content block expected for the "header" directive; none found. .. header:: """], ["""\ .. header:: first part of the header .. header:: second part of the header """, """\
first part of the header second part of the header """], ] totest['footers'] = [ ["""\ .. footer:: a paragraph for the footer """, """\