# Functions
HandleCreateMetadataSuccessfully creates an HTTP handler at `/secrets/uuid/metadata` on the test handler mux that responds with a metadata reference URL.
HandleCreateMetadatumSuccessfully creates an HTTP handler at `/secrets/uuid/metadata` on the test handler mux that responds with a single created metadata.
HandleCreateSecretSuccessfully creates an HTTP handler at `/secrets` on the test handler mux that tests secret creation.
HandleDeleteMetadatumSuccessfully creates an HTTP handler at `/secrets/uuid/metadata/key` on the test handler mux that tests metadata deletion.
HandleDeleteSecretSuccessfully creates an HTTP handler at `/secrets` on the test handler mux that tests secret deletion.
HandleGetMetadataSuccessfully creates an HTTP handler at `/secrets/uuid/metadata` on the test handler mux that responds with retrieved metadata.
HandleGetMetadatumSuccessfully creates an HTTP handler at `/secrets/uuid/metadata/foo` on the test handler mux that responds with a single metadatum.
HandleGetPayloadSuccessfully creates an HTTP handler at `/secrets` on the test handler mux that responds with a single secret.
HandleGetSecretSuccessfully creates an HTTP handler at `/secrets` on the test handler mux that responds with a single secret.
HandleListSecretsSuccessfully creates an HTTP handler at `/secrets` on the test handler mux that responds with a list of two secrets.
HandleUpdateMetadatumSuccessfully creates an HTTP handler at `/secrets/uuid/metadata/foo` on the test handler mux that responds with a single updated metadatum.
HandleUpdateSecretSuccessfully creates an HTTP handler at `/secrets` on the test handler mux that tests secret updates.
# Constants
No description provided by the author
No description provided by the author
CreateRequest provides the input to a Create request.
CreateResponse provides a Create result.
No description provided by the author
GetPayloadResponse provides a payload result.
GetResponse provides a Get result.
ListResponse provides a single page of RESOURCE results.
No description provided by the author
No description provided by the author
UpdateRequest provides the input to as Update request.
# Variables
ExpectedCreateMetadataResult is the result of a Metadata create request.
ExpectedCreateResult is the result of a create request.
ExpectedMetadata is the result of a Get or Create request.
ExpectedMetadatum is the result of a Metadatum Get, Create, or Update request.
ExpectedSecretsSlice is the slice of secrets expected to be returned from ListResponse.
FirstSecret is the first secret in the List request.
SecondSecret is the second secret in the List request.