aboutsummaryrefslogtreecommitdiff
path: root/template/python/base-test.py
blob: 5aecbe0d15cbb2d16bd2da7fe61afdedb40f52ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""
{{_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_}}