Completed
Push — master ( 0b86a5...142324 )
by Christophe
25s
created

test_referencing_simple()   A

Complexity

Conditions 1

Size

Total Lines 12

Duplication

Lines 0
Ratio 0 %

Importance

Changes 7
Bugs 0 Features 0
Metric Value
cc 1
c 7
b 0
f 0
dl 0
loc 12
rs 9.4285
1
# This Python file uses the following encoding: utf-8
2
3
from unittest import TestCase
4
from panflute import *
5
6
import pandoc_numbering
7
from helper import verify_conversion
8
9
def test_referencing_standard():
10
    verify_conversion(
11
        '''
12
Header
13
======
14
15
Section
16
-------
17
18
Exercise (First title) -.+.#exercise:first
19
20
Exercise (Second title) -.+.#exercise:second
21
22
See [%D %d %T %t %g %s %n # %c](#exercise:first)
23
24
See [%D %d %T %t %g %s %n # %c](#exercise:second)
25
        ''',
26
        '''
27
Header
28
======
29
30
Section
31
-------
32
33
[**Exercise 1.1** *(First title)*]{#exercise:first .pandoc-numbering-text .exercise}
34
35
[**Exercise 1.2** *(Second title)*]{#exercise:second .pandoc-numbering-text .exercise}
36
37
See [Exercise exercise First title first title 1.1.1 1.1 1.1 1.1 2](#exercise:first)
38
39
See [Exercise exercise Second title second title 1.1.2 1.1 1.2 1.2 2](#exercise:second)
40
        '''
41
    )
42
43
44
def test_referencing_latex():
45
    verify_conversion(
46
        '''
47
Title
48
=====
49
50
Exercise -.#first
51
52
Exercise (Title) -.#second
53
54
See [%D %d %T %t %g %s %n # %c %p](#exercise:first)
55
56
See [%D %d %T %t %g %s %n # %c %p](#exercise:second)
57
        ''',
58
        '''
59
Title
60
=====
61
62
\\phantomsection\\addcontentsline{exercise}{exercise}{\\protect\\numberline {1.1}{\\ignorespaces {Exercise}}}[\\label{exercise:first}**Exercise 1**]{#exercise:first .pandoc-numbering-text .exercise}
63
64
\\phantomsection\\addcontentsline{exercise}{exercise}{\\protect\\numberline {1.2}{\\ignorespaces {Title}}}[\\label{exercise:second}**Exercise 2** *(Title)*]{#exercise:second .pandoc-numbering-text .exercise}
65
66
See [Exercise exercise 1.1 1 1 1 2 \pageref{exercise:first}](#exercise:first)
67
68
See [Exercise exercise Title title 1.2 1 2 2 2 \pageref{exercise:second}](#exercise:second)
69
        ''',
70
        'latex'
71
   )
72