mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
Initial sketch of automated indent tests
This commit is contained in:
parent
eefa5662e6
commit
67f2c7149c
14 changed files with 257 additions and 0 deletions
14
lua/tests/indent/python/basic_blocks.py
Normal file
14
lua/tests/indent/python/basic_blocks.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
from os import (
|
||||
path,
|
||||
name as OsName
|
||||
)
|
||||
|
||||
def foo(x):
|
||||
pass
|
||||
|
||||
class Foo:
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def foo(self):
|
||||
pass
|
||||
Loading…
Add table
Add a link
Reference in a new issue