aboutsummaryrefslogtreecommitdiff
path: root/test/go/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/go/test.sh')
-rwxr-xr-xtest/go/test.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/go/test.sh b/test/go/test.sh
index ccae6da..0a9e045 100755
--- a/test/go/test.sh
+++ b/test/go/test.sh
@@ -5,9 +5,24 @@ set -e
# Optional: Import test library
source dev-container-features-test-lib
+# go
check "version" go version
+
+# revive
check "revive version" revive --version
check "revive is installed at correct path" bash -c "which revive | grep /go/bin/revive"
+# gomodifytags
+check "gomodifytags is installed at correct path" bash -c "which gomodifytags | grep /go/bin/gomodifytags"
+
+# goplay
+check "goplay is installed at correct path" bash -c "which goplay | grep /go/bin/goplay"
+
+# gotests
+check "gotests is installed at correct path" bash -c "which gotests | grep /go/bin/gotests"
+
+# impl
+check "impl is installed at correct path" bash -c "which impl | grep /go/bin/impl"
+
# Report result
reportResults \ No newline at end of file