(self)
| 474 | assert len(txt) > 0 |
| 475 | |
| 476 | def test_deleting_files(self): |
| 477 | upload_path, = site.upload([os.path.join('tests', 'test_folder', 'dir1', 'test.txt')]) |
| 478 | res = httpx.get(f'http://localhost:10101{upload_path}') |
| 479 | assert res.status_code == 200 |
| 480 | site.unload(upload_path) |
| 481 | res = httpx.get(f'http://localhost:10101{upload_path}') |
| 482 | assert res.status_code == 404 |