Problem: plenary.nvim is deprecated. The test suite depends on plenary's async test runner and coroutine-based utilities, tying the project to an unmaintained dependency. CI also tests against Neovim 0.8-0.11, which are no longer relevant. Solution: replace plenary with busted + nlua (nvim -l). Convert all async test patterns (a.wrap, a.util.sleep, a.util.scheduler) to synchronous equivalents using vim.wait. Rename tests/ to spec/ to follow busted convention. Replace the CI test matrix with nvim-busted-action targeting stable/nightly only. Add .busted config, luarocks test_dependencies, and update the nix devshell.
27 lines
799 B
Lua
27 lines
799 B
Lua
local config = require('oil.config')
|
|
|
|
describe('config', function()
|
|
after_each(function()
|
|
vim.g.oil = nil
|
|
end)
|
|
|
|
it('falls back to vim.g.oil when setup() is called with no args', function()
|
|
vim.g.oil = { delete_to_trash = true, cleanup_delay_ms = 5000 }
|
|
config.setup()
|
|
assert.is_true(config.delete_to_trash)
|
|
assert.equals(5000, config.cleanup_delay_ms)
|
|
end)
|
|
|
|
it('uses defaults when neither opts nor vim.g.oil is set', function()
|
|
vim.g.oil = nil
|
|
config.setup()
|
|
assert.is_false(config.delete_to_trash)
|
|
assert.equals(2000, config.cleanup_delay_ms)
|
|
end)
|
|
|
|
it('prefers explicit opts over vim.g.oil', function()
|
|
vim.g.oil = { delete_to_trash = true }
|
|
config.setup({ delete_to_trash = false })
|
|
assert.is_false(config.delete_to_trash)
|
|
end)
|
|
end)
|