goldentests 1.4.1

A golden file testing library where tests can be configured within the same test file
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
for i in range(0, 10):
    print(i)

# expected stdout:
# 0
# 1
# 2
# 3
# 4
# 5
# 6
# 7
# 8
# 9