(t *testing.T)
| 357 | } |
| 358 | |
| 359 | func TestGitService_createSignature_nilCommit(t *testing.T) { |
| 360 | t.Parallel() |
| 361 | _, err := createSignature(uncalledSigner(t), nil) |
| 362 | |
| 363 | if err == nil { |
| 364 | t.Error("Expected error to be returned because no author was passed") |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | func TestGitService_createSignature_signerError(t *testing.T) { |
| 369 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…