blob: a2547464154afe3c5a45508fde4846d8710fd670 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
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" } },
}
|