(p []byte)
| 526 | } |
| 527 | |
| 528 | func (b *bytesWriter) Write(p []byte) (n int, err error) { |
| 529 | *b.buf = append(*b.buf, p...) |
| 530 | return len(p), nil |
| 531 | } |
| 532 | |
| 533 | func TestListCustomTimeFormat(t *testing.T) { |
| 534 | defaultNamespace := "default" |
no outgoing calls
no test coverage detected