(t *testing.T, store *identity.Store, messageID, agentEmail string)
| 44 | } |
| 45 | |
| 46 | func deliveryStatus(t *testing.T, store *identity.Store, messageID, agentEmail string) string { |
| 47 | t.Helper() |
| 48 | msg, err := store.GetMessageWithContent(context.Background(), messageID, agentEmail) |
| 49 | if err != nil { |
| 50 | t.Fatalf("read message: %v", err) |
| 51 | } |
| 52 | return msg.DeliveryStatus |
| 53 | } |
| 54 | |
| 55 | func TestDeliveryPipeline_DeliveredThenBounceSuppresses(t *testing.T) { |
| 56 | pool := testutil.TestDB(t) |
no test coverage detected