mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-04 15:07:34 +00:00
test: fixed tests for Util.merge
This commit is contained in:
parent
3f3d9df324
commit
f3695bc5be
1 changed files with 2 additions and 14 deletions
|
@ -148,25 +148,13 @@ describe("util", function()
|
|||
output = { a = { 3 } },
|
||||
},
|
||||
{
|
||||
input = { { b = { 1, 2 } }, { a = { 3 }, __merge = false } },
|
||||
input = { { b = { 1, 2 } }, { a = { 3 }, b = vim.NIL } },
|
||||
output = { a = { 3 } },
|
||||
},
|
||||
{
|
||||
input = { { a = 1 }, { b = 2, __merge = false } },
|
||||
input = { { a = 1 }, { b = 2, a = vim.NIL } },
|
||||
output = { b = 2 },
|
||||
},
|
||||
{
|
||||
input = { { a = { 1, 2 } }, { a = { 3, __merge = true } } },
|
||||
output = { a = { 1, 2, 3 } },
|
||||
},
|
||||
{
|
||||
input = { { a = { 1, 2, __merge = true } }, { a = { 3 } } },
|
||||
output = { a = { 1, 2, 3 } },
|
||||
},
|
||||
{
|
||||
input = { { a = { 1, 2, __merge = true } }, { a = { 3, __merge = false } } },
|
||||
output = { a = { 3 } },
|
||||
},
|
||||
}
|
||||
|
||||
for _, test in ipairs(tests) do
|
||||
|
|
Loading…
Add table
Reference in a new issue