1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-06-12 21:47:35 +02:00

Replace drone strings with woodpecker (#391)

Co-authored-by: 6543 <6543@obermui.de>
This commit is contained in:
Anbraten
2021-10-02 10:59:34 +02:00
committed by GitHub
parent ba0286d055
commit bb37836600
34 changed files with 126 additions and 126 deletions

View File

@ -164,7 +164,7 @@ func Test_coding(t *testing.T) {
g.Describe("When downloading a file", func() {
g.It("Should return file for specified build", func() {
data, err := c.File(ctx, fakeUser, fakeRepo, fakeBuild, ".drone.yml")
data, err := c.File(ctx, fakeUser, fakeRepo, fakeBuild, ".woodpecker.yml")
g.Assert(err == nil).IsTrue()
g.Assert(string(data)).Equal("pipeline:\n test:\n image: golang:1.6\n commands:\n - go test\n")
})