mirror of
https://github.com/thegeeklab/wp-opentofu.git
synced 2024-11-12 17:10:39 +00:00
37 lines
397 B
Plaintext
37 lines
397 B
Plaintext
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}
|