(t *testing.T)
| 166 | } |
| 167 | |
| 168 | func TestSkipCleanup(t *testing.T) { |
| 169 | t.Parallel() |
| 170 | |
| 171 | tb := &fakeTB{} |
| 172 | slogtest.Make(tb, &slogtest.Options{ |
| 173 | SkipCleanup: true, |
| 174 | }) |
| 175 | |
| 176 | assert.Len(t, "no cleanups", 0, tb.cleanups) |
| 177 | } |
| 178 | |
| 179 | func TestUnmarshalable(t *testing.T) { |
| 180 | t.Parallel() |