vaguerent/internal/client/noop_test.go
sophia 277972f38f
Disable tests that use plugin manager to load builtin plugins
Loading builtin plugins is being changed. Once it has been fixed,
these tests should be re-enabled
2022-04-25 12:24:29 -05:00

25 lines
402 B
Go

package client
// import (
// "context"
// "testing"
// "github.com/hashicorp/go-hclog"
// "github.com/stretchr/testify/require"
// )
// func init() {
// hclog.L().SetLevel(hclog.Trace)
// }
// func TestProjectNoop(t *testing.T) {
// ctx := context.Background()
// require := require.New(t)
// // Build our client
// tp := TestBasis(t)
// // Noop
// require.NoError(tp.Noop(ctx))
// }