command/revoke: revoke

This commit is contained in:
Mitchell Hashimoto
2015-03-31 19:21:02 -07:00
parent 4cbe26b726
commit ea234d9cbf
8 changed files with 218 additions and 1 deletions

View File

@@ -1,3 +1,21 @@
package command
import (
"testing"
"github.com/hashicorp/vault/api"
)
const FixturePath = "./test-fixtures"
func testClient(t *testing.T, addr string, token string) *api.Client {
config := api.DefaultConfig()
config.Address = addr
client, err := api.NewClient(config)
if err != nil {
t.Fatalf("err: %s", err)
}
client.SetToken(token)
return client
}