moby/volume/mounts/validate_unix_test.go
Sebastiaan van Stijn d69b1fdb72
volume/mounts: cleanup tests
- don't use un-keyed structs
- user assert.Check where possible
- use consts for fixed values

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2023-07-27 15:00:13 +02:00

8 lines
158 B
Go

//go:build !windows
package mounts // import "github.com/docker/docker/volume/mounts"
const (
testDestinationPath = "/foo"
testSourcePath = "/foo"
)