Move cncd/pipeline/pipeline/ to pipeline/ (#347)

* Refactor: move cncd/pipeline/ to pipeline/

* Refactor: move pipeline/pipeline/ to pipeline/
This commit is contained in:
Jacob Floyd
2021-09-24 06:18:34 -05:00
committed by GitHub
parent a0d008e071
commit e34daae0cf
114 changed files with 57 additions and 74 deletions

26
pipeline/error_test.go Normal file
View File

@@ -0,0 +1,26 @@
package pipeline
import (
"testing"
)
func TestExitError(t *testing.T) {
err := ExitError{
Name: "build",
Code: 255,
}
got, want := err.Error(), "build : exit code 255"
if got != want {
t.Errorf("Want error message %q, got %q", want, got)
}
}
func TestOomError(t *testing.T) {
err := OomError{
Name: "build",
}
got, want := err.Error(), "build : received oom kill"
if got != want {
t.Errorf("Want error message %q, got %q", want, got)
}
}