4 files changed,
20 insertions(+),
0 deletions(-)
Author:
Smirnov Oleksandr
ss2316544@gmail.com
Committed at:
2022-06-23 13:24:29 +0300
Parent:
c5096aa
jump to
| M | README.md |
| M | lua/gopher/gotests.lua |
| M | lua/gopher/init.lua |
| M | plugin/gopher.vim |
M
README.md
@@ -93,6 +93,12 @@ ```vim
:GoTestsAll ``` +Generate tests only for exported functions/methods in current file + +```vim +:GoTestsExp +``` + 7. Run `go generate` command ```vim
M
lua/gopher/gotests.lua
@@ -56,4 +56,16 @@
add_test(cmd_args) end +---generate unit tests for all exported functions +---@param parallel boolean +function M.all_exported_tests(parallel) + local cmd_args = {} + if parallel then + table.insert(cmd_args, "-parallel") + end + + table.insert(cmd_args, "-exported") + add_test(cmd_args) +end + return M
M
lua/gopher/init.lua
@@ -10,6 +10,7 @@ gopher.get = require "gopher.goget"
gopher.impl = require "gopher.impl" gopher.generate = require "gopher.gogenerate" gopher.test_add = gotests.one_test +gopher.test_exported = gotests.all_exported_tests gopher.tests_all = gotests.all_tests return gopher
M
plugin/gopher.vim
@@ -2,6 +2,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=* GoTestsExp :lua require"gopher".test_exported(<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>)