forked from TrueCloudLab/frostfs-api-go
[#302] pkg/container: Document default values set in NewAttribute
Document field values of instance constructed via `NewAttribute`. Assert the values in corresponding unit test. Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
8b7a433864
commit
3984353d37
2 changed files with 18 additions and 0 deletions
|
@ -9,6 +9,11 @@ type (
|
|||
Attributes []*Attribute
|
||||
)
|
||||
|
||||
// NewAttribute creates and initializes blank Attribute.
|
||||
//
|
||||
// Defaults:
|
||||
// - key: "";
|
||||
// - value: "".
|
||||
func NewAttribute() *Attribute {
|
||||
return NewAttributeFromV2(new(container.Attribute))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue