diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-07-22 14:11:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-22 14:11:24 -0400 |
commit | 365775489f24bcfe84a7e5257cf64ea51d523b6e (patch) | |
tree | 4cc046907e0b658cfda5507562e475e09baa3525 /test/apiv2 | |
parent | 6370622444676db812cbc54aef56e691ea7788d0 (diff) | |
parent | 2d8e837a9b351536fa45da8f80de5df118db6f1b (diff) | |
download | podman-365775489f24bcfe84a7e5257cf64ea51d523b6e.tar.gz podman-365775489f24bcfe84a7e5257cf64ea51d523b6e.tar.bz2 podman-365775489f24bcfe84a7e5257cf64ea51d523b6e.zip |
Merge pull request #11015 from jmguzik/until-list-volume
Add until filter to volume ls filters list
Diffstat (limited to 'test/apiv2')
-rw-r--r-- | test/apiv2/30-volumes.at | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/apiv2/30-volumes.at b/test/apiv2/30-volumes.at index b639e05f9..fd1542293 100644 --- a/test/apiv2/30-volumes.at +++ b/test/apiv2/30-volumes.at @@ -174,6 +174,8 @@ t POST libpod/volumes/create \ # with date way back in the past, volume should not be deleted (compat api) t POST volumes/prune?filters='{"until":["500000"]}' 200 t GET libpod/volumes/json?filters='{"label":["testuntilcompat"]}' 200 length=1 +t GET libpod/volumes/json?filters='{"until":["500000"]}' 200 length=0 +t GET libpod/volumes/json?filters='{"until":["5000000000"]}' 200 length=1 # with date far in the future, volume should be deleted (compat api) t POST volumes/prune?filters='{"until":["5000000000"]}' 200 |