summaryrefslogtreecommitdiff
path: root/test/version/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/version/main.go')
-rw-r--r--test/version/main.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/version/main.go b/test/version/main.go
new file mode 100644
index 000000000..2a751de78
--- /dev/null
+++ b/test/version/main.go
@@ -0,0 +1,11 @@
+package main
+
+import (
+ "fmt"
+
+ "github.com/containers/podman/v3/version"
+)
+
+func main() {
+ fmt.Printf(version.Version.String())
+}