diff options
author | Pablo Ulloa <pablo.ulloac@usach.cl> | 2023-09-27 21:45:29 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-27 21:45:29 +0300 |
commit | e7f7d194d634e86b29ed2b74a35dd3c24fa1f7a5 (patch) | |
tree | 2c0596d76105b96fbe574407b651c487ca87d584 /test/common-utils/devcontainer-custom-user-default-home.sh | |
parent | 9852ca8888b613daff741b3f26fd7d3b0387b42d (diff) |
[common-utils] fix bug when user home is custom by base docker (#703)feature_common-utils_2.2.0
* [common-utils] fix bug when user home is custom by base docker
* bumped minor version
* reduced conditions to improve readability
Diffstat (limited to 'test/common-utils/devcontainer-custom-user-default-home.sh')
-rw-r--r-- | test/common-utils/devcontainer-custom-user-default-home.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/common-utils/devcontainer-custom-user-default-home.sh b/test/common-utils/devcontainer-custom-user-default-home.sh new file mode 100644 index 0000000..f29bd7c --- /dev/null +++ b/test/common-utils/devcontainer-custom-user-default-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 /home/customUser" grep "/home/customUser" <(getent passwd customUser | cut -d: -f6) + +# Report result +reportResults |