(t *testing.T)
| 86 | } |
| 87 | |
| 88 | func TestIngestionSlack(t *testing.T) { |
| 89 | for _, e := range encoding.AllEncodingsForWrites() { |
| 90 | t.Run(e.Version(), func(t *testing.T) { |
| 91 | testIngestionSlack(t, e) |
| 92 | }) |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | func testIngestionSlack(t *testing.T, e encoding.VersionedEncoding) { |
| 97 | wal, err := New(&Config{ |
nothing calls this directly
no test coverage detected