17 lines
275 B
Go
17 lines
275 B
Go
|
package remote
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/hashicorp/terraform/state/remote"
|
||
|
)
|
||
|
|
||
|
func TestRemoteClient_impl(t *testing.T) {
|
||
|
var _ remote.Client = new(remoteClient)
|
||
|
}
|
||
|
|
||
|
func TestRemoteClient(t *testing.T) {
|
||
|
client := testRemoteClient(t)
|
||
|
remote.TestClient(t, client)
|
||
|
}
|