(t *testing.T)
| 16 | } |
| 17 | |
| 18 | func TestCreateWithEmptyVolumeSpec(t *testing.T) { |
| 19 | icmd.RunCmd(icmd.Command("docker", "create", "-v", "", fixtures.AlpineImage)). |
| 20 | Assert(t, icmd.Expected{ |
| 21 | ExitCode: 125, |
| 22 | Err: "invalid empty volume spec", |
| 23 | }) |
| 24 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…