File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ def main():
69
69
`csv` was processed
70
70
"""
71
71
72
+
72
73
if __name__ == "__main__" :
73
74
import doctest
74
75
doctest .testmod ()
Original file line number Diff line number Diff line change 30
30
from patterns .behavioral .state import OUTPUT as state_output
31
31
from patterns .behavioral .strategy import main as strategy_main
32
32
from patterns .behavioral .strategy import OUTPUT as strategy_output
33
- from patterns .behavioral .template import main as template_main
34
- from patterns .behavioral .template import OUTPUT as template_output
35
33
from patterns .behavioral .visitor import main as visitor_main
36
34
from patterns .behavioral .visitor import OUTPUT as visitor_output
37
35
50
48
(specification_main , specification_output ),
51
49
(state_main , state_output ),
52
50
(strategy_main , strategy_output ),
53
- (template_main , template_output ),
54
51
(visitor_main , visitor_output ),
55
52
])
56
53
def test_output (main , output ):
You can’t perform that action at this time.
0 commit comments