aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/gotests/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/mason-registry/gotests/init.lua')
-rw-r--r--lua/mason-registry/gotests/init.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/mason-registry/gotests/init.lua b/lua/mason-registry/gotests/init.lua
new file mode 100644
index 00000000..465fec65
--- /dev/null
+++ b/lua/mason-registry/gotests/init.lua
@@ -0,0 +1,11 @@
+local Pkg = require "mason.core.package"
+local go = require "mason.core.managers.go"
+
+return Pkg.new {
+ name = "gotests",
+ desc = [[Gotests is a Golang commandline tool that generates table driven tests based on its target source files' function and method signatures.]],
+ homepage = "https://github.com/cweill/gotests",
+ categories = {},
+ languages = { Pkg.Lang.Go },
+ install = go.packages { "github.com/cweill/gotests/...", bin = { "gotests" } },
+}