mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-29 21:31:02 +00:00
75513575be
* store dependency's in git * since we vendor ... rm tech-depts * aad make target 'vendor' to update vendor folder (manual task)
36 lines
397 B
Text
36 lines
397 B
Text
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}
|