emacs/test/lisp/align-resources/python-mode.erts
Stefan Kangas daa174e56b Add python-mode tests for align.el
* test/lisp/align-tests.el (align-python): New test.
* test/lisp/align-resources/python-mode.erts: New file.
2023-08-03 00:49:02 +02:00

29 lines
317 B
Text

Name: align assignments
=-=
foo = "bar"
x = 1
zzzzz = True
y = None
=-=
foo = "bar"
x = 1
zzzzz = True
y = None
=-=-=
Name: python-chain-logic and basic-line-continuation
=-=
if foo or\
b and \
bcxxx and \
c:
pass
=-=
if foo or \
b and \
bcxxx and \
c:
pass
=-=-=