From c3df003624181b0fee32698db05297c8e28bf86d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 13 Feb 2015 10:11:24 -0800 Subject: [PATCH] terraform: more passing tests --- terraform/context_test.go | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/terraform/context_test.go b/terraform/context_test.go index 590c86986..8422bd41a 100644 --- a/terraform/context_test.go +++ b/terraform/context_test.go @@ -3658,8 +3658,7 @@ func TestContext2Apply_Provisioner_Diff(t *testing.T) { } } -/* -func TestContextApply_outputDiffVars(t *testing.T) { +func TestContext2Apply_outputDiffVars(t *testing.T) { m := testModule(t, "apply-good") p := testProvider("aws") s := &State{ @@ -3677,7 +3676,7 @@ func TestContextApply_outputDiffVars(t *testing.T) { }, }, } - ctx := testContext(t, &ContextOpts{ + ctx := testContext2(t, &ContextOpts{ Module: m, Providers: map[string]ResourceProviderFactory{ "aws": testProviderFuncFixed(p), @@ -3718,7 +3717,7 @@ func TestContextApply_outputDiffVars(t *testing.T) { } } -func TestContextApply_Provisioner_ConnInfo(t *testing.T) { +func TestContext2Apply_Provisioner_ConnInfo(t *testing.T) { m := testModule(t, "apply-provisioner-conninfo") p := testProvider("aws") pr := testProvisioner() @@ -3759,7 +3758,7 @@ func TestContextApply_Provisioner_ConnInfo(t *testing.T) { return nil } - ctx := testContext(t, &ContextOpts{ + ctx := testContext2(t, &ContextOpts{ Module: m, Providers: map[string]ResourceProviderFactory{ "aws": testProviderFuncFixed(p), @@ -3794,13 +3793,14 @@ func TestContextApply_Provisioner_ConnInfo(t *testing.T) { } } -func TestContextApply_destroy(t *testing.T) { +/* +func TestContext2Apply_destroy(t *testing.T) { m := testModule(t, "apply-destroy") h := new(HookRecordApplyOrder) p := testProvider("aws") p.ApplyFn = testApplyFn p.DiffFn = testDiffFn - ctx := testContext(t, &ContextOpts{ + ctx := testContext2(t, &ContextOpts{ Module: m, Hooks: []Hook{h}, Providers: map[string]ResourceProviderFactory{ @@ -3844,6 +3844,7 @@ func TestContextApply_destroy(t *testing.T) { } } +/* func TestContextApply_destroyOutputs(t *testing.T) { m := testModule(t, "apply-destroy-outputs") h := new(HookRecordApplyOrder)