(id ID)
| 29 | |
| 30 | func (b booterFunc) BootSpec(m Machine) (*Spec, error) { return b(m) } |
| 31 | func (b booterFunc) ReadBootFile(id ID) (io.ReadCloser, int64, error) { |
| 32 | return nil, -1, errors.New("no") |
| 33 | } |
| 34 | func (b booterFunc) WriteBootFile(id ID, r io.Reader) error { return errors.New("no") } |
| 35 | |
| 36 | func TestIpxe(t *testing.T) { |
nothing calls this directly
no outgoing calls
no test coverage detected