mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 03:32:54 -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
|
||
|
}
|