new failing tests for nested sets

This commit is contained in:
James Bardin 2018-11-13 23:01:51 -05:00
parent 16f28f7348
commit 71b55601ce
2 changed files with 29 additions and 2 deletions

View File

@ -63,13 +63,22 @@ func testResourceNestedSet() *schema.Resource {
Type: schema.TypeInt,
Optional: true,
},
"bool": {
Type: schema.TypeBool,
Optional: true,
},
},
},
},
"optional": {
Type: schema.TypeString,
ForceNew: true,
Type: schema.TypeString,
// commenting this causes it to get missed during apply
//ForceNew: true,
Optional: true,
},
"bool": {
Type: schema.TypeBool,
Optional: true,
},
},

View File

@ -200,6 +200,24 @@ resource "test_resource_nested_set" "foo" {
`),
Check: checkFunc,
},
resource.TestStep{
Config: strings.TrimSpace(`
resource "test_resource_nested_set" "foo" {
single {
value = "bar"
optional = "baz"
}
multi {
set {
required = "new"
optional_int = 3
}
}
}
`),
Check: checkFunc,
},
},
})
}