mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
14 lines
286 B
Go
14 lines
286 B
Go
package terraform
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/terraform/dag"
|
|
)
|
|
|
|
func TestGraphNodeConfigModule_impl(t *testing.T) {
|
|
var _ dag.Vertex = new(GraphNodeConfigModule)
|
|
var _ dag.NamedVertex = new(GraphNodeConfigModule)
|
|
var _ graphNodeConfig = new(GraphNodeConfigModule)
|
|
}
|