type PodDirIO … var _ … func (p PodDirIO) DirExists(path string) (bool, error) { … } func (p PodDirIO) Mkdir(path string) error { … } func (p PodDirIO) CreateFile(path string, content io.Reader) error { … } func (p PodDirIO) Rename(oldPath, newPath string) error { … } func (p PodDirIO) RemoveAll(path string) error { … } func (p PodDirIO) execute(command []string, stdin io.Reader) (string, string, error) { … }