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.
30 lines
458 B
Lua
30 lines
458 B
Lua
rockspec_format = '3.0'
|
|
package = 'oil.nvim'
|
|
version = 'scm-1'
|
|
|
|
source = {
|
|
url = 'git+https://github.com/barrettruth/oil.nvim.git',
|
|
}
|
|
|
|
description = {
|
|
summary = 'Neovim file explorer: edit your filesystem like a buffer',
|
|
homepage = 'https://github.com/barrettruth/oil.nvim',
|
|
license = 'MIT',
|
|
}
|
|
|
|
dependencies = {
|
|
'lua >= 5.1',
|
|
}
|
|
|
|
test_dependencies = {
|
|
'nlua',
|
|
'busted >= 2.1.1',
|
|
}
|
|
|
|
test = {
|
|
type = 'busted',
|
|
}
|
|
|
|
build = {
|
|
type = 'builtin',
|
|
}
|