mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
cad9aa9025
* Add test structure to views package for rendering test output * Add test file HCL configuration and parser functionality * address comments
13 lines
170 B
Go
13 lines
170 B
Go
package moduletest
|
|
|
|
import "github.com/hashicorp/terraform/internal/configs"
|
|
|
|
type File struct {
|
|
Config *configs.TestFile
|
|
|
|
Name string
|
|
Status Status
|
|
|
|
Runs []*Run
|
|
}
|