summaryrefslogtreecommitdiff
path: root/internal/pipeline/pipeline_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/pipeline/pipeline_test.go')
-rw-r--r--internal/pipeline/pipeline_test.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/internal/pipeline/pipeline_test.go b/internal/pipeline/pipeline_test.go
index dfcb8a3..806f9be 100644
--- a/internal/pipeline/pipeline_test.go
+++ b/internal/pipeline/pipeline_test.go
@@ -28,9 +28,15 @@ func (t *StrLog) Write(p []byte) (n int, err error) {
return len(p), nil
}
+type PipelineTester interface {
+ Pipeliner
+ DeleteObjects(bucket string, keys []string) error
+ TestQueueId() string
+}
+
type connection struct {
name string
- c Pipeliner
+ c PipelineTester
}
// Test_download tests the download() function inside the pipeline