(tmpdir)
| 18 | |
| 19 | |
| 20 | def test_unicode_project_folder(tmpdir): |
| 21 | pad, builder = get_unicode_builder(tmpdir) |
| 22 | prog, _ = builder.build(pad.root) |
| 23 | with prog.artifacts[0].open("rb") as f: |
| 24 | assert f.read() == b"<h1>Hello</h1>\n<p>W\xc3\xb6rld</p>\n\n" |
| 25 | |
| 26 | |
| 27 | def test_unicode_attachment_filename(tmpdir): |
nothing calls this directly
no test coverage detected