-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_markdown_unittest.py
56 lines (45 loc) · 1.72 KB
/
test_markdown_unittest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
'''
Test markdown.py with unittest
To run tests:
python test_markdown_unittest.py
'''
import unittest
from markdown_adapter import run_markdown
class TestMarkdownPy(unittest.TestCase):
def setUp(self):
pass
def test_non_marked_lines(self):
'''
Non-marked lines should only get 'p' tags around all input
'''
self.assertEqual(
run_markdown('this line has no special handling'),
'<p>this line has no special handling</p>')
def test_em(self):
'''
Lines surrounded by asterisks should be wrapped in 'em' tags
'''
self.assertEqual(
run_markdown('*this should be wrapped in em tags*'),
'<p><em>this should be wrapped in em tags</em></p>')
def test_strong(self):
'''
Lines surrounded by double asterisks should be wrapped in 'strong' tags
'''
self.assertEqual(
run_markdown('**this should be wrapped in strong tags**'),
'<p><strong>this should be wrapped in strong tags</strong></p>')
def test_onehash(self):
self.assertEqual(
run_markdown('#this should be wrapped in h tags#'),
'<p><h1>this should be wrapped in h tags</h1></p>')
def test_twohash(self):
self.assertEqual(
run_markdown('##this should be wrapped in h tags##'),
'<p><h2>this should be wrapped in h tags</h2></p>')
def test_threehash(self):
self.assertEqual(
run_markdown('###this should be wrapped in h tags###'),
'<p><h3>this should be wrapped in h tags</h3></p>')
if __name__ == '__main__':
unittest.main()