mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
20 lines
337 B
Go
20 lines
337 B
Go
|
package volumes
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestContainers(t *testing.T) {
|
||
|
v := &Volume{containers: make(map[string]struct{})}
|
||
|
id := "1234"
|
||
|
|
||
|
v.AddContainer(id)
|
||
|
|
||
|
if v.Containers()[0] != id {
|
||
|
t.Fatalf("adding a container ref failed")
|
||
|
}
|
||
|
|
||
|
v.RemoveContainer(id)
|
||
|
if len(v.Containers()) != 0 {
|
||
|
t.Fatalf("removing container failed")
|
||
|
}
|
||
|
}
|