Skip to content

Commit

Permalink
Improved tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Nazarii-4chain committed Dec 6, 2023
1 parent 877aee3 commit 9e92b75
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions buxclient_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,16 @@ func TestAuthenticationWithOnlyAccessKey(t *testing.T) {
path: "/access-key",
clientMethod: func(c *BuxClient) (any, error) { return c.GetAccessKeys(context.Background(), anyMetadataConditions) },
},
{
caseTitle: "CreateAccessKey",
path: "/access-key",
clientMethod: func(c *BuxClient) (any, error) { return c.CreateAccessKey(context.Background(), anyMetadataConditions) },
},
{
caseTitle: "RevokeAccessKey",
path: "/access-key",
clientMethod: func(c *BuxClient) (any, error) { return c.RevokeAccessKey(context.Background(), anyParam) },
},
{
caseTitle: "GetDestinationByID",
path: "/destination",
Expand Down

0 comments on commit 9e92b75

Please sign in to comment.