-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtest.py
More file actions
45 lines (31 loc) · 666 Bytes
/
test.py
File metadata and controls
45 lines (31 loc) · 666 Bytes
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
from helpers import surroundingGraphviz
import unittest
TEST_CURSOR = 119
TEST_CODE = '''digraph {
subgraph cluster_small {
a -> b; label=small;
}
subgraph cluster_big {
p -> q -> r -> s -> t;
label=big;
t -> p;
}
t -> a; b -> q;
}'''
TEST_SOURCE = '''
## my test
```graphviz
''' + TEST_CODE + '''
```
## stage
deploy new VMs
deploy new stage proxy to new VMs
## production
deploy new production proxy to VMs
-- dot -Tpdf -otutorial.pdf
'''
class TestSurroundingGraphviz(unittest.TestCase):
def test_valid_code(self):
self.assertEqual(surroundingGraphviz(TEST_SOURCE, TEST_CURSOR), TEST_CODE)
if __name__ == '__main__':
unittest.main()