diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2021-11-20 15:14:56 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-11-24 17:29:55 +0100 |
| commit | c7634f16dee010d092cad867959a51962406fc62 (patch) | |
| tree | 9e4747a585df28ff7239a85b099c22bddedb010b /tests/indent/lua_spec.lua | |
| parent | 0f3c94cf7237f8d0ba613666394e248d1947de77 (diff) | |
Mark failing indent tests to add them to CI
Expected failures should be monitored so that we don't have regressions
and also remove failure marks when they are resolved.
Diffstat (limited to 'tests/indent/lua_spec.lua')
| -rw-r--r-- | tests/indent/lua_spec.lua | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/indent/lua_spec.lua b/tests/indent/lua_spec.lua index c107a700..43dc8103 100644 --- a/tests/indent/lua_spec.lua +++ b/tests/indent/lua_spec.lua @@ -1,4 +1,5 @@ local Runner = require("tests.indent.common").Runner +local XFAIL = require("tests.indent.common").XFAIL local run = Runner:new(it, "tests/indent/lua", { tabstop = 2, @@ -9,7 +10,10 @@ local run = Runner:new(it, "tests/indent/lua", { describe("indent Lua:", function() describe("whole file:", function() - run:whole_file "." + run:whole_file(".", { expected_failures = { + "./string.lua", + "./comment.lua", + } }) end) describe("new line:", function() @@ -18,10 +22,10 @@ describe("indent Lua:", function() 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 }) run:new_line("func.lua", { on_line = 5, text = "3,", indent = 4 }) - run:new_line("string.lua", { on_line = 1, text = "x", indent = 0 }) - run:new_line("string.lua", { on_line = 2, text = "x", indent = 0 }) + run:new_line("string.lua", { on_line = 1, text = "x", indent = 0 }, "expected failure", XFAIL) + run:new_line("string.lua", { on_line = 2, text = "x", indent = 0 }, "expected failure", XFAIL) run:new_line("string.lua", { on_line = 3, text = "x", indent = 2 }) - run:new_line("string.lua", { on_line = 4, text = "x", indent = 4 }) + run:new_line("string.lua", { on_line = 4, text = "x", indent = 4 }, "expected failure", XFAIL) 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 }) |
