(self)
| 212 | assert len(all_links) == 10 |
| 213 | |
| 214 | def test_remove_none(self): |
| 215 | try: |
| 216 | with output_hidden(show_failing=False): |
| 217 | archivebox_remove.main(['--yes', '--delete', 'https://doesntexist.com']) |
| 218 | assert False, 'Should raise if no URLs match' |
| 219 | except Exception: |
| 220 | pass |
| 221 | |
| 222 | |
| 223 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected