dotfiles/.emacs.d/snippets/python-mode/test_file

12 lines
176 B
Plaintext
Raw Normal View History

2017-12-21 17:29:29 +01:00
# -*- mode: snippet -*-
# name: test_file
# key: tf
# group : testing
# --
import unittest
${1:from ${2:test_file} import *}
$0
if __name__ == '__main__':
unittest.main()