mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-30 10:47:14 -06:00
16 lines
265 B
Go
16 lines
265 B
Go
package plugin
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestResourceProvisioner(t *testing.T) {
|
|
c := NewClient(&ClientConfig{Cmd: helperProcess("resource-provisioner")})
|
|
defer c.Kill()
|
|
|
|
_, err := c.Client()
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
}
|