all repos

gopher.nvim @ 70297f28e77839141293dfd966eadc9397490418

Minimalistic plugin for Go development
4 files changed, 18 insertions(+), 0 deletions(-)
feat(gotests): add generate all tests

docs(gotests): add generate all tests
Author: Smirnov Olexander ss2316544@gmail.com
Committed at: 2022-06-21 17:51:59 +0300
Parent: acd414d
M README.md

@@ -3,6 +3,7 @@

Minimalistic plugin for Go development in Neovim written in Lua. It's not an LSP tool, the main goal of this plugin add go tooling support in neovim. + ## Install Pre-dependency: [go](https://github.com/golang/go) (tested on 1.17 and 1.18)

@@ -84,6 +85,12 @@ Generate one test for spesific function/method

```vim :GoTestAdd +``` + +Generate all tests for all functions/methods in current file + +```vim +:GoTestsAll ``` 7. Run `go generate` command
M lua/gopher/gotests.lua

@@ -45,4 +45,13 @@

add_test(cmd_args) end +function M.all_tests(parallel) + local cmd_args = { "-all" } + if parallel then + table.insert(cmd_args, "-parallel") + end + + add_test(cmd_args) +end + return M
M lua/gopher/init.lua

@@ -10,5 +10,6 @@ gopher.get = require "gopher.goget"

gopher.impl = require "gopher.impl" gopher.generate = require "gopher.gogenerate" gopher.test_add = gotests.one_test +gopher.tests_all = gotests.all_tests return gopher
M plugin/gopher.vim

@@ -1,6 +1,7 @@

command! -nargs=* GoTagAdd :lua require"gopher".tags_add(<f-args>) command! -nargs=* GoTagRm :lua require"gopher".tags_rm(<f-args>) command! -nargs=* GoTestAdd :lua require"gopher".test_add(<f-args>) +command! -nargs=* GoTestsAll :lua require"gopher".tests_all(<f-args>) command! -nargs=* GoMod :lua require"gopher".mod(<f-args>) command! -nargs=* GoGet :lua require"gopher".get(<f-args>) command! -nargs=* GoImpl :lua require"gopher".impl(<f-args>)