mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00

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>
15 lines
228 B
Bash
15 lines
228 B
Bash
# -*- 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
|