opentofu/internal/moduletest/suite.go
2023-05-02 15:33:06 +00:00

11 lines
244 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
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
}