yasnippet-snippets/snippets/python-mode/test_file

12 lines
176 B
Plaintext
Raw Permalink Normal View History

2011-07-07 14:32:44 +02:00
# -*- mode: snippet -*-
# name: test_file
# key: tf
2013-11-27 22:36:32 +01:00
# group : testing
2011-07-07 14:32:44 +02:00
# --
import unittest
${1:from ${2:test_file} import *}
$0
if __name__ == '__main__':
unittest.main()