We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7ed82a commit 94a7d9aCopy full SHA for 94a7d9a
test/create.bats
@@ -86,4 +86,10 @@ function teardown() {
86
sane_run jq -SMr '.process.user.additionalGids' "$BUNDLE/config.json"
87
[ "$status" -eq 0 ]
88
[[ "$output" == "null" ]]
89
+
90
+ # Check that the history looks sane.
91
+ umoci stat --image "$NEWIMAGE" --tag "latest" --json
92
+ [ "$status" -eq 0 ]
93
+ # There should be no non-empty_layers.
94
+ [[ "$(echo "$output" | jq -SM '[.history[] | .empty_layer == false] | any')" == "false" ]]
95
}
0 commit comments