.dotfiles/templates/python/tests/test_hello.py
2024-12-31 16:47:46 +01:00

8 lines
171 B
Python

import name
def test_hello(capsys):
name.hello()
captured = capsys.readouterr()
assert captured.out == "Hello from testing!\n"
assert captured.err == ""