We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba69b38 commit 958efb0Copy full SHA for 958efb0
Makefile
@@ -44,6 +44,9 @@ bench:
44
bench_goid:
45
$(GO) test -bench='BenchmarkGoid' $(PKG_ASSERT)
46
47
+bench_reca:
48
+ $(GO) test -bench='BenchmarkRecursion.*' $(PKG_ERR2)
49
+
50
bench_out:
51
$(GO) test -bench='BenchmarkTryOut_.*' $(PKG_ERR2)
52
internal/handler/handler_test.go
@@ -26,6 +26,9 @@ func TestProcess(t *testing.T) {
26
args args
27
want want
28
}{
29
+ // TODO: this test e.g. has problem because Process is not called
30
+ // anymore if Any and Err are nil. Check is done before Process call.
31
+ // - check with handler.WorkToDo() should we even test this.
32
{"all nil and our handlers",
33
args{Info: handler.Info{
34
Any: nil,
0 commit comments