mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
11 lines
244 B
Go
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
|
|
}
|