blob: 349b4c32de619720d305f67c4235538b4088250a (
plain) (
tree)
|
|
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
# Definition specific tests
. /etc/os-release
check "non-root user" test "$(whoami)" = "devcontainer"
check "distro" test "${VERSION_CODENAME}" = "bionic"
# Report result
reportResults
|