func()

in gce-containers-startup/command/mock_runner.go [89:95]


func (m *MockRunner) MkdirAll(path string, perm os.FileMode) error {
	if _, found := m.expectedMkdirAlls[path]; !found && m.FailOnUnexpectedCalls {
		return fmt.Errorf("MkdirAll() called on unexpected path: %s", path)
	}
	m.expectedMkdirAlls[path] = true
	return nil
}