blob: d7aae651cbff8cc58a53381a6b77bd07aba9debe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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" } },
}
|