mirror of
https://github.com/docker/docker-bench-security.git
synced 2025-01-31 14:22:33 +01:00
9 lines
197 B
Bash
9 lines
197 B
Bash
#!/usr/bin/env bats
|
|
|
|
load "test_helper/bats-support/load"
|
|
load "test_helper/bats-assert/load"
|
|
|
|
# 4.5
|
|
@test "4.5 - Enable Content trust for Docker" {
|
|
assert [ "x$DOCKER_CONTENT_TRUST" = "x1" ]
|
|
}
|