2014-09-22 20:15:27 +02:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2015-10-15 22:48:58 +02:00
|
|
|
"github.com/hashicorp/go-getter"
|
2014-09-22 20:15:27 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestUiModuleStorage_impl(t *testing.T) {
|
2015-10-15 22:48:58 +02:00
|
|
|
var _ getter.Storage = new(uiModuleStorage)
|
2014-09-22 20:15:27 +02:00
|
|
|
}
|