aboutsummaryrefslogtreecommitdiff
path: root/test/common-utils/fedora.sh
blob: 67706d49a8a971d6615bad8524fc5a5433a9ee06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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 "${ID}" = "fedora"
check "jq" jq  --version

# Report result
reportResults