Python: add regression tests and organise tests

This commit is contained in:
Rasmus Lerchedahl Petersen
2020-06-22 16:36:19 +02:00
parent aa04a2a476
commit e8289d6fa1
28 changed files with 206 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
def obfuscated_id(x):
y = x
z = y
return z
a = 42
b = obfuscated_id(a)