summaryrefslogtreecommitdiff
path: root/test/system/005-info.bats
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-06 21:27:52 +0200
committerGitHub <noreply@github.com>2020-04-06 21:27:52 +0200
commit7d95e0c47ad7203c6ad3e5a0441a309e5368dc52 (patch)
tree94f380670abc8b55885d37f79c5232222d2e8b43 /test/system/005-info.bats
parent0519fa0f1e1697cd52f5ceb388117b64eefa7fc2 (diff)
parente20ecc733c878f0c4b67a21204f0d5ae11929bf0 (diff)
downloadpodman-7d95e0c47ad7203c6ad3e5a0441a309e5368dc52.tar.gz
podman-7d95e0c47ad7203c6ad3e5a0441a309e5368dc52.tar.bz2
podman-7d95e0c47ad7203c6ad3e5a0441a309e5368dc52.zip
Merge pull request #5507 from baude/newinfo
refactor info
Diffstat (limited to 'test/system/005-info.bats')
-rw-r--r--test/system/005-info.bats32
1 files changed, 16 insertions, 16 deletions
diff --git a/test/system/005-info.bats b/test/system/005-info.bats
index f229b0886..c53ba8125 100644
--- a/test/system/005-info.bats
+++ b/test/system/005-info.bats
@@ -8,19 +8,19 @@ load helpers
run_podman info
expected_keys="
-BuildahVersion: *[0-9.]\\\+
-Conmon:\\\s\\\+package:
-Distribution:
-OCIRuntime:\\\s\\\+name:
+buildahVersion: *[0-9.]\\\+
+conmon:\\\s\\\+package:
+distribution:
+ociRuntime:\\\s\\\+name:
os:
rootless:
registries:
store:
-GraphDriverName:
-GraphRoot:
-GraphStatus:
-ImageStore:\\\s\\\+number: 1
-RunRoot:
+graphDriverName:
+graphRoot:
+graphStatus:
+imageStore:\\\s\\\+number: 1
+runRoot:
"
while read expect; do
is "$output" ".*$expect" "output includes '$expect'"
@@ -36,13 +36,13 @@ RunRoot:
expr_path="/[a-z0-9\\\/.-]\\\+\\\$"
tests="
-host.BuildahVersion | [0-9.]
-host.Conmon.path | $expr_path
-host.OCIRuntime.path | $expr_path
-store.ConfigFile | $expr_path
-store.GraphDriverName | [a-z0-9]\\\+\\\$
-store.GraphRoot | $expr_path
-store.ImageStore.number | 1
+host.buildahVersion | [0-9.]
+host.conmon.path | $expr_path
+host.ociRuntime.path | $expr_path
+store.configFile | $expr_path
+store.graphDriverName | [a-z0-9]\\\+\\\$
+store.graphRoot | $expr_path
+store.imageStore.number | 1
"
parse_table "$tests" | while read field expect; do