In the test docstrings every line has to end with a .. This is not nice. Sometimes the docstring has to be tall and span a couple of lines.
We can use indentation to show that the sentence is continous.
Example:
def test_something():
"""
arrange: This is a very important part of a very important test so
the arrange sentence has to be loooong.
act: Do the test.
assert: It better not fail 😠.
"""
In the test docstrings every line has to end with a
.. This is not nice. Sometimes the docstring has to be tall and span a couple of lines.We can use indentation to show that the sentence is continous.
Example: