mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-17 09:52:49 -05:00
11 lines
168 B
Go
11 lines
168 B
Go
package command
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/go-getter"
|
|
)
|
|
|
|
func TestUiModuleStorage_impl(t *testing.T) {
|
|
var _ getter.Storage = new(uiModuleStorage)
|
|
}
|