all repos

gopher.nvim @ d1a21bffabd7e74b241bfea1016cf78befb3b122

Minimalistic plugin for Go development

gopher.nvim/spec/integration/comment_test.lua(view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
local t = require "spec.testutils"

local child = MiniTest.new_child_neovim()
local T = MiniTest.new_set {
  hooks = {
    post_once = child.stop,
    pre_case = function()
      MiniTest.skip "This module should be fixed first"
      child.restart { "-u", t.mininit_path }
    end,
  },
}
T["comment"] = MiniTest.new_set {}

T["comment"]["should add comment to package"] = function() end

T["comment"]["should add comment to struct"] = function() end

T["comment"]["should add comment to function"] = function() end

T["comment"]["should add comment to method"] = function() end

T["comment"]["should add comment to interface"] = function() end

T["comment"]["otherwise should add // above cursor"] = function() end

return T