diff options
| author | Jędrzej Boczar <yendreij@gmail.com> | 2021-04-18 14:31:05 +0200 |
|---|---|---|
| committer | Kiyan <yazdani.kiyan@protonmail.com> | 2021-04-23 21:21:38 +0200 |
| commit | 69dda8c09db1ad1e4660c3d383faab48ba1792ab (patch) | |
| tree | 751a995aa2b4d292606a5a3113e83f4300648362 /lua | |
| parent | tests/indent: test cases with `normal o` for C/C++ (diff) | |
| download | nvim-treesitter-69dda8c09db1ad1e4660c3d383faab48ba1792ab.tar nvim-treesitter-69dda8c09db1ad1e4660c3d383faab48ba1792ab.tar.gz nvim-treesitter-69dda8c09db1ad1e4660c3d383faab48ba1792ab.tar.bz2 nvim-treesitter-69dda8c09db1ad1e4660c3d383faab48ba1792ab.tar.lz nvim-treesitter-69dda8c09db1ad1e4660c3d383faab48ba1792ab.tar.xz nvim-treesitter-69dda8c09db1ad1e4660c3d383faab48ba1792ab.tar.zst nvim-treesitter-69dda8c09db1ad1e4660c3d383faab48ba1792ab.zip | |
tests/indent: add `normal o` tests for Python
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/tests/indent/python/control_flow.py | 2 | ||||
| -rw-r--r-- | lua/tests/indent/python_spec.lua | 46 |
2 files changed, 40 insertions, 8 deletions
diff --git a/lua/tests/indent/python/control_flow.py b/lua/tests/indent/python/control_flow.py index 543decc71..c8cd2541b 100644 --- a/lua/tests/indent/python/control_flow.py +++ b/lua/tests/indent/python/control_flow.py @@ -1,5 +1,3 @@ -a, b, c, = 1, 2, 3 - if a == a: x = 1 elif b: diff --git a/lua/tests/indent/python_spec.lua b/lua/tests/indent/python_spec.lua index 1bdb4aa48..2927ad4e5 100644 --- a/lua/tests/indent/python_spec.lua +++ b/lua/tests/indent/python_spec.lua @@ -1,18 +1,52 @@ local whole_file = require('nvim-treesitter.test_utils').indent_whole_file +local new_line = require('nvim-treesitter.test_utils').indent_new_line local scan_dir = require('plenary.scandir').scan_dir +local opts = { + tabstop = 4, + shiftwidth = 4, + softtabstop = 0, + expandtab = true, +} + describe('indent Python:', function() describe('whole file:', function() local files = scan_dir('lua/tests/indent/python'); for _, file in ipairs(files) do it(vim.fn.fnamemodify(file, ':t'), function() - whole_file(file, { - tabstop = 4, - shiftwidth = 4, - softtabstop = 0, - expandtab = true, - }) + whole_file(file, opts) + end) + end + end) + + describe('new line:', function() + local run = function(file, spec, title) + title = title and title or tostring(spec.on_line) + it(string.format('%s[%s]', file, title), function() + new_line('lua/tests/indent/python/' .. file, spec, opts) end) end + + run('aligned_indent.py', { on_line = 1, text = 'arg3,', indent = 19 }) + run('basic_blocks.py', { on_line = 1, text = 'wait,', indent = 4 }) + run('basic_blocks.py', { on_line = 6, text = 'x += 1', indent = 4 }) + run('basic_blocks.py', { on_line = 10, text = 'x += 1', indent = 8 }) + run('basic_blocks.py', { on_line = 7, text = 'x += 1', indent = 4 }, '7, after last line of a block') + run('basic_blocks.py', { on_line = 11, text = 'x += 1', indent = 8 }, '11, after last line of a block') + run('basic_collections.py', { on_line = 3, text = '4,', indent = 4 }) + run('comprehensions.py', { on_line = 8, text = 'if x != 2', indent = 4 }) + run('control_flow.py', { on_line = 23, text = 'x = 4', indent = 4 }) + run('hanging_indent.py', { on_line = 1, text = 'arg0,', indent = 8 }) + run('hanging_indent.py', { on_line = 5, text = '0,', indent = 4 }) + run('join_lines.py', { on_line = 1, text = '+ 1 \\', indent = 4 }) + run('join_lines.py', { on_line = 4, text = '+ 1 \\', indent = 4 }) + run('join_lines.py', { on_line = 7, text = '+ 1 \\', indent = 4 }) + run('nested_collections.py', { on_line = 5, text = '0,', indent = 12 }) + run('nested_collections.py', { on_line = 6, text = ',0', indent = 12 }) + run('nested_collections.py', { on_line = 29, text = '[1, 2],', indent = 12 }) + run('nested_collections.py', { on_line = 39, text = '0,', indent = 5 }) + run('strings.py', { on_line = 14, text = 'x', indent = 4 }) + run('strings.py', { on_line = 15, text = 'x', indent = 0 }) + run('strings.py', { on_line = 16, text = 'x', indent = 8 }) end) end) |
