diff options
Diffstat (limited to 'test/git')
-rw-r--r-- | test/git/install_git_from_src.sh | 12 | ||||
-rw-r--r-- | test/git/scenarios.json | 11 |
2 files changed, 23 insertions, 0 deletions
diff --git a/test/git/install_git_from_src.sh b/test/git/install_git_from_src.sh new file mode 100644 index 0000000..226278a --- /dev/null +++ b/test/git/install_git_from_src.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +set -e + +# Optional: Import test library +source dev-container-features-test-lib + +check "version" git --version +check "gettext" dpkg-query -l gettext + +# Report result +reportResults diff --git a/test/git/scenarios.json b/test/git/scenarios.json new file mode 100644 index 0000000..a57bea7 --- /dev/null +++ b/test/git/scenarios.json @@ -0,0 +1,11 @@ +{ + "install_git_from_src": { + "image": "ubuntu:focal", + "features": { + "git": { + "version": "latest", + "ppa": "false" + } + } + } +} |