File: Theorem.py

package info (click to toggle)
plastex 3.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,132 kB
  • sloc: python: 23,341; xml: 18,076; javascript: 7,755; ansic: 46; makefile: 40; sh: 26
file content (15 lines) | stat: -rw-r--r-- 430 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from plasTeX.TeX import TeX
from plasTeX.Base.TeX.Primitives import par

def test_single_paragraph_theorem():
    """Check single paragraph theorem does contain a paragraph"""
    tex = TeX()
    tex.input(r'''
      \newtheorem{thm}{Theorem}
      \begin{thm}
      a b c
      \end{thm}
      ''')
    nodes = tex.parse().getElementsByTagName('thm')[0].childNodes
    assert len(nodes) == 1
    assert isinstance(nodes[0], par)