(self)
| 205 | assert len(all_links) == 4 |
| 206 | |
| 207 | def test_remove_domain(self): |
| 208 | with output_hidden(): |
| 209 | archivebox_remove.main(['--yes', '--delete', '--filter-type=domain', 'example5.com', 'example6.com']) |
| 210 | |
| 211 | all_links = load_main_index(out_dir=OUTPUT_DIR) |
| 212 | assert len(all_links) == 10 |
| 213 | |
| 214 | def test_remove_none(self): |
| 215 | try: |
nothing calls this directly
no test coverage detected