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
from __future__ import print_function

print("Test1\r\nTest2\n\n\n\nhi\n")

# Change the number of empty lines here to test error output
# expected stdout:
# Test1
# Test2
# 
# 
# 
# hi