From a33c8cb60bffb2fe207cca7f2855899270299fb6 Mon Sep 17 00:00:00 2001 From: Katsunori Kanda Date: Sat, 4 Aug 2012 21:43:52 +0900 Subject: add test template for python --- template/python/base-test.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 template/python/base-test.py (limited to 'template') 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_}} -- cgit v1.2.3-54-g00ecf