opentofu/command/module_storage_test.go
Mitchell Hashimoto 1b8426f7ff command: Get works
2014-09-22 11:15:27 -07:00

12 lines
182 B
Go

package command
import (
"testing"
"github.com/hashicorp/terraform/config/module"
)
func TestUiModuleStorage_impl(t *testing.T) {
var _ module.Storage = new(uiModuleStorage)
}