(tmpdir)
| 11 | |
| 12 | |
| 13 | def test_save_static(tmpdir): |
| 14 | tmpdir.mkdir("static") |
| 15 | static_viewer.save_static(tmpdir) |
| 16 | assert len(tmpdir.listdir()) == 2 |
| 17 | assert tmpdir.join("index.html").check(file=1) |
| 18 | assert tmpdir.join("static/static.js").read() == "MITMWEB_STATIC = true;" |
| 19 | |
| 20 | |
| 21 | def test_save_filter_help(tmpdir): |