forked from r00t2/gosecret
1
0
Fork 0
gosecret/conts_test.go

25 lines
545 B
Go

package gosecret
import (
`github.com/google/uuid`
)
// Paths.
const (
DbusDefaultCollectionPath string = DbusPath + "/collections/login"
)
// Strings.
const (
defaultCollection string = "default" // SHOULD point to a collection named "login"; "default" is the alias.
testAlias string = "GOSECRET_TESTING_ALIAS"
testSecretContent string = "This is a test secret for gosecret."
testItemLabel string = "gosecret_test_item"
)
// Objects.
var (
collectionName uuid.UUID = uuid.New()
collectionAlias uuid.UUID = uuid.New()
)