Skip to content

Commit

Permalink
Test adding certs in createStack
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkeloscar committed Feb 18, 2018
1 parent 79a15f2 commit c469e11
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion aws/cf_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,15 @@ func TestCreatingStack(t *testing.T) {
}{
{
"successful-call",
stackSpec{name: "foo", securityGroupID: "bar", vpcID: "baz"},
stackSpec{
name: "foo",
securityGroupID: "bar",
vpcID: "baz",
certificateARNs: map[string]time.Time{
"arn-default": time.Time{},
"arn-second": time.Time{},
},
},
cfMockOutputs{createStack: R(mockCSOutput("fake-stack-id"), nil)},
"fake-stack-id",
false,
Expand Down

0 comments on commit c469e11

Please sign in to comment.