You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
397 B
37 lines
397 B
8 years ago
|
snippet gd
|
||
|
g.Describe("${1:name}", func() {
|
||
|
${2}
|
||
|
})
|
||
|
${0}
|
||
|
snippet git
|
||
|
g.It("${1:name}", func() {
|
||
|
${2}
|
||
|
})
|
||
|
${0}
|
||
|
snippet gait
|
||
|
g.It("${1:name}", func(done Done) {
|
||
|
done()
|
||
|
${2}
|
||
|
})
|
||
|
${0}
|
||
|
snippet gb
|
||
|
g.Before(func() {
|
||
|
${1}
|
||
|
})
|
||
|
${0}
|
||
|
snippet gbe
|
||
|
g.BeforeEach(func() {
|
||
|
${1}
|
||
|
})
|
||
|
${0}
|
||
|
snippet ga
|
||
|
g.After(func() {
|
||
|
${1}
|
||
|
})
|
||
|
${0}
|
||
|
snippet gae
|
||
|
g.AfterEach(func() {
|
||
|
${1}
|
||
|
})
|
||
|
${0}
|