blob: 3a802b59b88735991e2abeff3c74f805fdd19aad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
# Definition specific tests
check "version" docker --version
# Report result
reportResults
|