v0.4.0
Escaped newlines for multiline strings
Multiline strings are now formatted so that the quotes are always on a separate line.
def test_something():
assert "\nfirst line\nsecond line" == snapshot(
"""\
first line
second line\
"""
)
What's Changed
Full Changelog: v0.3.2...v0.4.0