53 root = tmp_path /
'logs.log'
58 ts.write(
'hello world\n')
59 ts.write(
'another line\n')
63 assert 'hello world' in orig.getvalue()
67 enc = ts.file_instance.get_encoding()
68 content = logfile.read_text(encoding=enc)
69 assert 'hello world' in content
70 assert logfile.stat().st_size > 0