summaryrefslogtreecommitdiffstats
path: root/vim/snippets/python.snippets
diff options
context:
space:
mode:
Diffstat (limited to 'vim/snippets/python.snippets')
-rw-r--r--vim/snippets/python.snippets8
1 files changed, 0 insertions, 8 deletions
diff --git a/vim/snippets/python.snippets b/vim/snippets/python.snippets
deleted file mode 100644
index fc0dd70..0000000
--- a/vim/snippets/python.snippets
+++ /dev/null
@@ -1,8 +0,0 @@
-snippet test
- import unittest
-
- ${1}
-
- class ${2:`join(map(split(matchstr(expand("%"), '^t\(ests\?\)\?/\zs.*\ze\.py'), '_'), 'toupper(v:val[0]) . v:val[1:]'), '')`}(unittest.TestCase):
- def test_${3}(self):
- ${0}