We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89c38d8 commit d209f2eCopy full SHA for d209f2e
blaster/blaster_test.go
@@ -23,6 +23,12 @@ import (
23
"github.com/pkg/errors"
24
)
25
26
+func TestLoadEmptyLogs(t *testing.T) {
27
+ ctx, cancel := context.WithCancel(context.Background())
28
+ b := New(ctx, cancel)
29
+ must(t, b.LoadLogs(&bytes.Buffer{}))
30
+}
31
+
32
func TestWriteHeaders(t *testing.T) {
33
ctx, cancel := context.WithCancel(context.Background())
34
b := New(ctx, cancel)
0 commit comments