aboutsummaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
Diffstat (limited to 'template')
-rw-r--r--template/python/base-test.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/template/python/base-test.py b/template/python/base-test.py
new file mode 100644
index 0000000..9f00533
--- /dev/null
+++ b/template/python/base-test.py
@@ -0,0 +1,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_}}