diff options
Diffstat (limited to 'test/common-utils/devcontainer-custom-home.sh')
-rw-r--r-- | test/common-utils/devcontainer-custom-home.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/common-utils/devcontainer-custom-home.sh b/test/common-utils/devcontainer-custom-home.sh new file mode 100644 index 0000000..9b64cc0 --- /dev/null +++ b/test/common-utils/devcontainer-custom-home.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +set -e + +# Optional: Import test library +source dev-container-features-test-lib + +# Definition specific tests +check "user is customUser" grep customUser <(whoami) +check "home is /customHome" grep "/customHome" <(getent passwd customUser | cut -d: -f6) + +# Report result +reportResults |