.dotfiles/files/templates/python/tests/test_hello.py
2025-07-04 18:26:00 +02: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 == ""