File: Counter.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 (20 lines) | stat: -rw-r--r-- 447 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

from plasTeX.TeX import TeX

def test_counter():
    t = TeX()
    t.input(r'''
\documentclass{book}
\begin{document}
\begin{figure}\caption{A}\end{figure}
\section{B}
\chapter{C}
\section{D}
\begin{figure}\caption{E}\end{figure}
\end{document}
    ''')

    p = t.parse()

    assert [x.ref.source for x in p.getElementsByTagName("caption")] == ["1", "1.1"]
    assert [x.ref.source for x in p.getElementsByTagName("section")] == ["0.1", "1.1"]