func()

in setuptest/initplanshow.go [16:24]


func (dtv DirTypeWithVars) InitPlanShow(t *testing.T) (Response, error) {
	resp, err := setup(t, dtv.RootDir, dtv.TestDir, nil)
	if err != nil {
		return resp, err
	}
	resp.Options.Vars = dtv.Vars
	resp.PlanStruct, err = terraform.InitAndPlanAndShowWithStructE(t, resp.Options)
	return resp, err
}