mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-29 10:21:01 -06:00
15 lines
187 B
Go
15 lines
187 B
Go
|
package remote
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestHTTPClient_impl(t *testing.T) {
|
||
|
var _ Client = new(HTTPClient)
|
||
|
}
|
||
|
|
||
|
func TestHTTPClient(t *testing.T) {
|
||
|
// TODO
|
||
|
//testClient(t, client)
|
||
|
}
|