Add new yasnippet for Python unittesting

This commit is contained in:
Gergely Polonkai 2018-11-18 07:18:43 +01:00
parent 4700c2e2a4
commit 39d27f11d0
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: New unittest
# key: testdef
# --
def test_${1:name}(self):
"""${2:docstring}
"""
$0self.assertTrue(False)