mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			366 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			366 B
		
	
	
	
		
			Go
		
	
	
	
	
	
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
 | 
						|
}
 |