mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
10 lines
193 B
Plaintext
10 lines
193 B
Plaintext
# -*- mode: snippet -*-
|
|
# contributer: Yusuke Tsutsumi <tsutsumi.yusuke@gmail.com>
|
|
# name: test {}
|
|
# key: test
|
|
# description: add a test method
|
|
# --
|
|
func Test${1:Feature}(t *testing.T) {
|
|
$0
|
|
}
|