Initial sketch of automated indent tests

This commit is contained in:
Jędrzej Boczar 2021-03-13 22:46:45 +01:00 committed by Kiyan
parent eefa5662e6
commit 67f2c7149c
14 changed files with 257 additions and 0 deletions

View file

@ -0,0 +1,41 @@
a = [
1,
[
2,
[
3
]
]
]
b = [
1, [[
3
],
]
]
c = [[[
3
]]]
d = {
'a': [
2, 3
],
'c': (
[1, 2, 3],
[
2,
4
], {
6,
8
}
)
}
e = (1, 2,
3, 4,
5, 6
)