2021-07-04 16:12:17 -05:00
|
|
|
local Runner = require("tests.indent.common").Runner
|
2021-11-20 15:14:56 +01:00
|
|
|
local XFAIL = require("tests.indent.common").XFAIL
|
2021-04-18 23:19:08 +02:00
|
|
|
|
2021-07-04 16:12:17 -05:00
|
|
|
local run = Runner:new(it, "tests/indent/lua", {
|
2021-04-18 23:19:08 +02:00
|
|
|
tabstop = 2,
|
|
|
|
|
shiftwidth = 2,
|
|
|
|
|
softtabstop = 0,
|
|
|
|
|
expandtab = true,
|
2021-04-23 00:41:44 +02:00
|
|
|
})
|
2021-04-18 23:19:08 +02:00
|
|
|
|
2021-07-04 16:12:17 -05:00
|
|
|
describe("indent Lua:", function()
|
|
|
|
|
describe("whole file:", function()
|
2022-01-18 21:17:26 +06:00
|
|
|
run:whole_file(".", {
|
|
|
|
|
expected_failures = {
|
|
|
|
|
"./comment.lua",
|
|
|
|
|
},
|
|
|
|
|
})
|
2021-04-18 23:19:08 +02:00
|
|
|
end)
|
|
|
|
|
|
2021-07-04 16:12:17 -05:00
|
|
|
describe("new line:", function()
|
|
|
|
|
run:new_line("comment.lua", { on_line = 1, text = "line", indent = "-- " })
|
2022-01-18 21:17:26 +06:00
|
|
|
run:new_line("comment.lua", { on_line = 5, text = "multiline", indent = " " }, "expected failure", XFAIL)
|
2021-07-04 16:12:17 -05:00
|
|
|
run:new_line("func.lua", { on_line = 1, text = "x = x + 1", indent = 2 })
|
|
|
|
|
run:new_line("func.lua", { on_line = 2, text = "y = y + 1", indent = 4 })
|
2022-02-05 03:08:18 +06:00
|
|
|
run:new_line("func.lua", { on_line = 4, text = "y = y + 1", indent = 2 })
|
2021-07-04 16:12:17 -05:00
|
|
|
run:new_line("func.lua", { on_line = 5, text = "3,", indent = 4 })
|
2022-02-05 03:08:18 +06:00
|
|
|
run:new_line("func.lua", { on_line = 9, text = "x = x + 1", indent = 0 })
|
2022-01-18 21:17:26 +06:00
|
|
|
run:new_line("string.lua", { on_line = 1, text = "x", indent = 0 })
|
|
|
|
|
run:new_line("string.lua", { on_line = 2, text = "x", indent = 0 })
|
2021-07-04 16:12:17 -05:00
|
|
|
run:new_line("string.lua", { on_line = 3, text = "x", indent = 2 })
|
2022-01-18 21:17:26 +06:00
|
|
|
run:new_line("string.lua", { on_line = 4, text = "x", indent = 4 })
|
2021-07-04 16:12:17 -05:00
|
|
|
run:new_line("table.lua", { on_line = 1, text = "b = 0,", indent = 2 })
|
|
|
|
|
run:new_line("table.lua", { on_line = 5, text = "4,", indent = 4 })
|
|
|
|
|
run:new_line("table.lua", { on_line = 7, text = "4,", indent = 4 })
|
2022-01-17 04:44:01 +06:00
|
|
|
run:new_line("loop.lua", { on_line = 4, text = "x = x + 1", indent = 2 })
|
2021-07-04 16:12:17 -05:00
|
|
|
run:new_line("cond.lua", { on_line = 5, text = "x = x + 1", indent = 2 })
|
|
|
|
|
run:new_line("cond.lua", { on_line = 7, text = "x = x + 1", indent = 2 })
|
|
|
|
|
run:new_line("cond.lua", { on_line = 8, text = "x = x + 1", indent = 4 })
|
2022-02-05 03:08:18 +06:00
|
|
|
run:new_line("cond.lua", { on_line = 10, text = "x = x + 1", indent = 2 })
|
|
|
|
|
run:new_line("cond.lua", { on_line = 12, text = "x = x + 1", indent = 0 })
|
2021-04-18 23:19:08 +02:00
|
|
|
end)
|
|
|
|
|
end)
|