From 1c7d04bfd1632daefcd297b2aff69c4403c6b85b Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Fri, 21 Apr 2017 15:45:49 -0300 Subject: [PATCH] removed dupl test --- pipeline/checksums/checksums_test.go | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/pipeline/checksums/checksums_test.go b/pipeline/checksums/checksums_test.go index bd6698b22..d589e5bd2 100644 --- a/pipeline/checksums/checksums_test.go +++ b/pipeline/checksums/checksums_test.go @@ -50,16 +50,3 @@ func TestPipeFileNotExist(t *testing.T) { ctx.AddArtifact("nope") assert.Error(Pipe{}.Run(ctx)) } - -func TestPipeFileCantBeWritten(t *testing.T) { - var assert = assert.New(t) - folder, err := ioutil.TempDir("", "goreleasertest") - assert.NoError(err) - var ctx = &context.Context{ - Config: config.Project{ - Dist: folder, - }, - } - ctx.AddArtifact("nope") - assert.Error(Pipe{}.Run(ctx)) -}