aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/python_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/indent/python_spec.lua')
-rw-r--r--tests/indent/python_spec.lua16
1 files changed, 13 insertions, 3 deletions
diff --git a/tests/indent/python_spec.lua b/tests/indent/python_spec.lua
index c400de542..6f4e0fec7 100644
--- a/tests/indent/python_spec.lua
+++ b/tests/indent/python_spec.lua
@@ -17,6 +17,9 @@ describe("indent Python:", function()
describe("new line:", function()
run:new_line("aligned_indent.py", { on_line = 1, text = "arg3,", indent = 19 })
+ run:new_line("aligned_indent_2.py", { on_line = 2, text = "x", indent = 4 })
+ run:new_line("aligned_indent_2.py", { on_line = 9, text = "x", indent = 4 })
+ run:new_line("aligned_indent_2.py", { on_line = 12, text = "x", indent = 4 })
run:new_line("basic_blocks.py", { on_line = 1, text = "wait,", indent = 4 })
run:new_line("basic_blocks.py", { on_line = 6, text = "x += 1", indent = 4 })
run:new_line("basic_blocks.py", { on_line = 7, text = "x += 1", indent = 4 })
@@ -35,11 +38,18 @@ describe("indent Python:", function()
run:new_line("control_flow.py", { on_line = 22, text = "x = 4", indent = 4 })
run:new_line("control_flow.py", { on_line = 24, text = "c < 6 and", indent = 7 })
run:new_line("control_flow.py", { on_line = 26, text = "x = 4", indent = 4 })
- run:new_line("control_flow.py", { on_line = 29, text = "x = 4", indent = 4 })
+ run:new_line("control_flow.py", { on_line = 28, text = "x = 4", indent = 4 })
run:new_line("branches.py", { on_line = 25, text = "x > 9 and", indent = 4 })
run:new_line("branches.py", { on_line = 29, text = "and x > 9", indent = 4 })
- run:new_line("hanging_indent.py", { on_line = 1, text = "arg0,", indent = 8 })
+ run:new_line("hanging_indent.py", { on_line = 1, text = "arg0,", indent = 4 })
run:new_line("hanging_indent.py", { on_line = 5, text = "0,", indent = 4 })
+ run:new_line("error_state_def.py", { on_line = 6, text = "b,", indent = 11 })
+ run:new_line("error_state_tuple.py", { on_line = 7, text = "b,", indent = 1 })
+ run:new_line("error_state_tuple_align.py", { on_line = 7, text = "b,", indent = 1 })
+ run:new_line("error_state_list.py", { on_line = 5, text = "3,", indent = 6 })
+ run:new_line("error_state_dict.py", { on_line = 6, text = "9:10,", indent = 6 })
+ run:new_line("error_state_set.py", { on_line = 5, text = "9,", indent = 6 })
+ run:new_line("error_state_funcall.py", { on_line = 5, text = "6,", indent = 2 })
run:new_line(
"join_lines.py",
{ on_line = 1, text = "+ 1 \\", indent = 4 },
@@ -75,7 +85,7 @@ describe("indent Python:", function()
run:new_line("line_after_indent.py", { on_line = 55, text = "x", indent = 4 })
run:new_line("line_after_indent.py", { on_line = 63, text = "x", indent = 4 })
- for _, line in ipairs { 2, 5, 8, 11, 16 } do
+ for _, line in ipairs { 2, 5, 8, 11, 16, 21, 24, 27, 34, 39 } do
run:new_line("return_dedent.py", { on_line = line, text = "x", indent = 0 })
end
end)