aboutsummaryrefslogtreecommitdiff
path: root/template/python/base-test.py
blob: 9f005337f39467b69320c2c864eb718106ca3b18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
{{_name_}}
"""

import unittest

class {{_expr_:substitute('{{_input_:name}}', '\w\+', '\u\0', '')}}(unittest.TestCase):
    def setUp(self):
        pass

    def tearDown(self):
        pass

    def test_something(self):
        {{_cursor_}}