aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMunif Tanjim <hello@muniftanjim.dev>2022-01-19 03:06:06 +0600
committerChristian Clason <christian.clason@uni-due.de>2022-01-21 10:51:51 +0100
commitbb60706433e593f976fb6cfee3b3a6910ce5bd2c (patch)
tree5762abd2e2b7c590817879dafda0527d1576628f /tests
parentrefactor(indent): extract functions and support metadata (diff)
downloadnvim-treesitter-bb60706433e593f976fb6cfee3b3a6910ce5bd2c.tar
nvim-treesitter-bb60706433e593f976fb6cfee3b3a6910ce5bd2c.tar.gz
nvim-treesitter-bb60706433e593f976fb6cfee3b3a6910ce5bd2c.tar.bz2
nvim-treesitter-bb60706433e593f976fb6cfee3b3a6910ce5bd2c.tar.lz
nvim-treesitter-bb60706433e593f976fb6cfee3b3a6910ce5bd2c.tar.xz
nvim-treesitter-bb60706433e593f976fb6cfee3b3a6910ce5bd2c.tar.zst
nvim-treesitter-bb60706433e593f976fb6cfee3b3a6910ce5bd2c.zip
feat(indent): support `@aligned_indent` for python
Diffstat (limited to 'tests')
-rw-r--r--tests/indent/python/branches.py6
-rw-r--r--tests/indent/python_spec.lua12
2 files changed, 9 insertions, 9 deletions
diff --git a/tests/indent/python/branches.py b/tests/indent/python/branches.py
index 7ce106bd7..474ec5b63 100644
--- a/tests/indent/python/branches.py
+++ b/tests/indent/python/branches.py
@@ -23,5 +23,9 @@ foo(
b)
if (a and
- b):
+ b):
+ pass
+
+if (a
+ and b):
pass
diff --git a/tests/indent/python_spec.lua b/tests/indent/python_spec.lua
index e6783c3df..c9fcaf013 100644
--- a/tests/indent/python_spec.lua
+++ b/tests/indent/python_spec.lua
@@ -1,5 +1,4 @@
local Runner = require("tests.indent.common").Runner
-local XFAIL = require("tests.indent.common").XFAIL
local run = Runner:new(it, "tests/indent/python", {
tabstop = 4,
@@ -12,16 +11,13 @@ describe("indent Python:", function()
describe("whole file:", function()
run:whole_file(".", {
expected_failures = {
- "./aligned_indent.py",
"./branches.py",
- "./hanging_indent.py",
- "./nested_collections.py",
},
})
end)
describe("new line:", function()
- run:new_line("aligned_indent.py", { on_line = 1, text = "arg3,", indent = 19 }, "xfail", XFAIL)
+ run:new_line("aligned_indent.py", { on_line = 1, text = "arg3,", indent = 19 })
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 = 10, text = "x += 1", indent = 8 })
@@ -29,8 +25,8 @@ describe("indent Python:", function()
run:new_line("basic_blocks.py", { on_line = 11, text = "x += 1", indent = 8 })
run:new_line("basic_collections.py", { on_line = 3, text = "4,", indent = 4 })
run:new_line("comprehensions.py", { on_line = 8, text = "if x != 2", indent = 4 })
- run:new_line("control_flow.py", { on_line = 23, text = "x = 4", indent = 4 }, "expected failure", XFAIL)
- run:new_line("hanging_indent.py", { on_line = 1, text = "arg0,", indent = 8 }, "expected failure", XFAIL)
+ run:new_line("control_flow.py", { on_line = 22, text = "x = 4", indent = 4 })
+ run:new_line("hanging_indent.py", { on_line = 1, text = "arg0,", indent = 8 })
run:new_line("hanging_indent.py", { on_line = 5, text = "0,", indent = 4 })
run:new_line("join_lines.py", { on_line = 1, text = "+ 1 \\", indent = 4 })
run:new_line("join_lines.py", { on_line = 4, text = "+ 1 \\", indent = 4 })
@@ -38,7 +34,7 @@ describe("indent Python:", function()
run:new_line("nested_collections.py", { on_line = 5, text = "0,", indent = 12 })
run:new_line("nested_collections.py", { on_line = 6, text = ",0", indent = 12 })
run:new_line("nested_collections.py", { on_line = 29, text = "[1, 2],", indent = 12 })
- run:new_line("nested_collections.py", { on_line = 39, text = "0,", indent = 5 }, "expected failure", XFAIL)
+ run:new_line("nested_collections.py", { on_line = 39, text = "0,", indent = 5 })
run:new_line("strings.py", { on_line = 14, text = "x", indent = 4 })
run:new_line("strings.py", { on_line = 15, text = "x", indent = 0 })
run:new_line("strings.py", { on_line = 16, text = "x", indent = 8 })