mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
7 lines
218 B
Lua
7 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)
|