aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/gotests/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/mason-registry/index/gotests/init.lua')
-rw-r--r--lua/mason-registry/index/gotests/init.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/lua/mason-registry/index/gotests/init.lua b/lua/mason-registry/index/gotests/init.lua
deleted file mode 100644
index d7aae651..00000000
--- a/lua/mason-registry/index/gotests/init.lua
+++ /dev/null
@@ -1,15 +0,0 @@
-local Pkg = require "mason-core.package"
-local _ = require "mason-core.functional"
-local go = require "mason-core.managers.go"
-
-return Pkg.new {
- name = "gotests",
- desc = _.dedent [[
- 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" } },
-}