mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-04 13:17:43 -06:00
8 lines
174 B
Go
8 lines
174 B
Go
|
package moduletest
|
||
|
|
||
|
// A Suite is a set of tests run together as a single Terraform configuration.
|
||
|
type Suite struct {
|
||
|
Name string
|
||
|
Components map[string]*Component
|
||
|
}
|