34 lines
1.2 KiB
Lua
34 lines
1.2 KiB
Lua
require("plenary.async").tests.add_to_env()
|
|
local oil = require("oil")
|
|
local test_util = require("tests.test_util")
|
|
|
|
a.describe("regression tests", function()
|
|
after_each(function()
|
|
test_util.reset_editor()
|
|
end)
|
|
-- see https://github.com/stevearc/oil.nvim/issues/25
|
|
a.it("can edit dirs that will be renamed to an existing buffer", function()
|
|
vim.cmd.edit({ args = { "README.md" } })
|
|
vim.cmd.vsplit()
|
|
vim.cmd.edit({ args = { "%:p:h" } })
|
|
assert.equals("oil", vim.bo.filetype)
|
|
vim.cmd.wincmd({ args = { "p" } })
|
|
assert.equals("markdown", vim.bo.filetype)
|
|
vim.cmd.edit({ args = { "%:p:h" } })
|
|
test_util.wait_for_autocmd("BufReadPost")
|
|
assert.equals("oil", vim.bo.filetype)
|
|
end)
|
|
|
|
-- https://github.com/stevearc/oil.nvim/issues/37
|
|
a.it("places the cursor on correct entry when opening on file", function()
|
|
vim.cmd.edit({ args = { "." } })
|
|
test_util.wait_for_autocmd("BufReadPost")
|
|
local entry = oil.get_cursor_entry()
|
|
assert.not_equals("README.md", entry and entry.name)
|
|
vim.cmd.edit({ args = { "README.md" } })
|
|
oil.open()
|
|
a.util.sleep(10)
|
|
entry = oil.get_cursor_entry()
|
|
assert.equals("README.md", entry and entry.name)
|
|
end)
|
|
end)
|