mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
451f6046b0
For unknown reasons it does not have the trailing space in `:args` output there anymore: [ FAILED ] test/functional\ex_cmds\arg_spec.lua @ 11: :argument does not restart :terminal buffer test/functional\ex_cmds\arg_spec.lua:25: Expected objects to be the same. Passed in: (string) ' [term://.//4552:C:\Windows\system32\cmd.exe]' Expected: (string) ' [term://.//4552:C:\Windows\system32\cmd.exe] ' stack traceback: test/functional\ex_cmds\arg_spec.lua:25: in function <test/functional\ex_cmds\arg_spec.lua:11> The test is not about that though, and this can be made less strict by using `trim()`. The new test in `test_arglist.vim` for no trailing newline is OK, and contains trailing spaces. So this is likely due to the length of it exceeding the column width already.
31 lines
950 B
Lua
31 lines
950 B
Lua
local helpers = require("test.functional.helpers")(after_each)
|
|
local eq, command, funcs = helpers.eq, helpers.command, helpers.funcs
|
|
local ok = helpers.ok
|
|
local clear = helpers.clear
|
|
|
|
describe(":argument", function()
|
|
before_each(function()
|
|
clear()
|
|
end)
|
|
|
|
it("does not restart :terminal buffer", function()
|
|
command("terminal")
|
|
helpers.feed([[<C-\><C-N>]])
|
|
command("argadd")
|
|
helpers.feed([[<C-\><C-N>]])
|
|
local bufname_before = funcs.bufname("%")
|
|
local bufnr_before = funcs.bufnr("%")
|
|
helpers.ok(nil ~= string.find(bufname_before, "^term://")) -- sanity
|
|
|
|
command("argument 1")
|
|
helpers.feed([[<C-\><C-N>]])
|
|
|
|
local bufname_after = funcs.bufname("%")
|
|
local bufnr_after = funcs.bufnr("%")
|
|
eq("["..bufname_before.."]", helpers.eval('trim(execute("args"))'))
|
|
ok(funcs.line('$') > 1)
|
|
eq(bufname_before, bufname_after)
|
|
eq(bufnr_before, bufnr_after)
|
|
end)
|
|
end)
|