(self)
| 198 | assert len(all_links) == 11 |
| 199 | |
| 200 | def test_remove_regex(self): |
| 201 | with output_hidden(): |
| 202 | archivebox_remove.main(['--yes', '--delete', '--filter-type=regex', r'http(s)?:\/\/(.+\.)?(example\d\.com)']) |
| 203 | |
| 204 | all_links = load_main_index(out_dir=OUTPUT_DIR) |
| 205 | assert len(all_links) == 4 |
| 206 | |
| 207 | def test_remove_domain(self): |
| 208 | with output_hidden(): |
nothing calls this directly
no test coverage detected