mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 08:35:53 +02:00
6 lines
218 B
Lua
6 lines
218 B
Lua
describe("Should not have", function()
|
|
it("dd()", function()
|
|
local out = vim.fn.system([[/bin/grep --line-number -r '\\bdd(' lua]])
|
|
assert(vim.v.shell_error == 1, "Should not have dd()\n" .. out)
|
|
end)
|
|
end)
|