yasnippet-snippets/python-mode/test_file

12 lines
180 B
Plaintext
Raw Normal View History

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