Conditions | 1 |
Total Lines | 29 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | from unittest import TestCase |
||
69 | def test_numbering_levels(self): |
||
70 | verify_conversion( |
||
71 | self, |
||
72 | r""" |
||
73 | --- |
||
74 | pandoc-numbering: |
||
75 | exercise: |
||
76 | general: |
||
77 | first-section-level: 2 |
||
78 | last-section-level: 2 |
||
79 | --- |
||
80 | |||
81 | First chapter |
||
82 | ============= |
||
83 | |||
84 | Second chapter |
||
85 | ============== |
||
86 | |||
87 | First section |
||
88 | ------------- |
||
89 | |||
90 | Second section |
||
91 | -------------- |
||
92 | |||
93 | Exercise # |
||
94 | |||
95 | Exercise (Title) # |
||
96 | """, |
||
97 | r""" |
||
98 | --- |
||
168 |