| 408 | var _ containerd.Container = &fakeSpecOnlyContainer{} |
| 409 | |
| 410 | type fakeSpecOnlyContainer struct { |
| 411 | t *testing.T |
| 412 | spec *specs.Spec |
| 413 | errOnSpec error |
| 414 | } |
| 415 | |
| 416 | // Spec implements client.Container. |
| 417 | func (c *fakeSpecOnlyContainer) Spec(context.Context) (*specs.Spec, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected