terraform/remote/consul_test.go

15 lines
270 B
Go
Raw Normal View History

package remote
import "testing"
func TestConsulRemote_Interface(t *testing.T) {
var client interface{} = &ConsulRemoteClient{}
if _, ok := client.(RemoteClient); !ok {
t.Fatalf("does not implement interface")
}
}
func TestConsulRemote(t *testing.T) {
// TODO
}