diff options
author | Ed Santiago <santiago@redhat.com> | 2020-01-17 08:44:40 -0700 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2020-01-17 09:59:22 -0700 |
commit | c2f50499c9e344a4bff56719fe66fa846ae3064d (patch) | |
tree | 4c40cbde7622f0409682bf1674fece4581fe4b2f /test/apiv2/30-volumes.at | |
parent | f5e614b63f641078b3a74b048f815fea54d03475 (diff) | |
download | podman-c2f50499c9e344a4bff56719fe66fa846ae3064d.tar.gz podman-c2f50499c9e344a4bff56719fe66fa846ae3064d.tar.bz2 podman-c2f50499c9e344a4bff56719fe66fa846ae3064d.zip |
Tests for API v2
Initial framework for testing the version 2 (HTTP) API.
Includes a collection of tests for some of the existing
endpoints. Not all tests are currently passing.
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'test/apiv2/30-volumes.at')
-rw-r--r-- | test/apiv2/30-volumes.at | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/apiv2/30-volumes.at b/test/apiv2/30-volumes.at new file mode 100644 index 000000000..b599680e3 --- /dev/null +++ b/test/apiv2/30-volumes.at @@ -0,0 +1,14 @@ +# -*- sh -*- +# +# volume-related tests +# + +# +# FIXME: endpoints seem to be unimplemented, return 404 +# +if false; then +t GET libpod/volumes/json 200 null +t POST libpod/volumes/create name=foo 201 +fi + +# vim: filetype=sh |