diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-25 09:35:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 09:35:03 -0400 |
commit | a9f8fb9cea7763e45e2e848a62df345d79893ef0 (patch) | |
tree | f6826812a0cf2d27d66fe963893d31d04434c57a /test | |
parent | ba6356280a86531d3cda7016859aef98bb3d8272 (diff) | |
parent | 13079abe3f7998f01d1b2e30dae3660cfb5a98c8 (diff) | |
download | podman-a9f8fb9cea7763e45e2e848a62df345d79893ef0.tar.gz podman-a9f8fb9cea7763e45e2e848a62df345d79893ef0.tar.bz2 podman-a9f8fb9cea7763e45e2e848a62df345d79893ef0.zip |
Merge pull request #13981 from rhatdan/volume
Add support for passing --volumepath
Diffstat (limited to 'test')
-rw-r--r-- | test/system/005-info.bats | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/system/005-info.bats b/test/system/005-info.bats index 1d84ede9b..333553b07 100644 --- a/test/system/005-info.bats +++ b/test/system/005-info.bats @@ -107,4 +107,12 @@ host.slirp4netns.executable | $expr_path fi } +@test "podman --root PATH --volumepath info - basic output" { + volumePath=${PODMAN_TMPDIR}/volumesGoHere + if ! is_remote; then + run_podman --storage-driver=vfs --root ${PODMAN_TMPDIR}/nothing-here-move-along --volumepath ${volumePath} info --format '{{ .Store.VolumePath }}' + is "$output" "${volumePath}" "'podman --volumepath should reset VolumePath" + fi +} + # vim: filetype=sh |