(self)
| 172 | os.remove(test_file) |
| 173 | |
| 174 | def test_add_stdin_url(self): |
| 175 | with output_hidden(): |
| 176 | archivebox_add.main([], stdin=test_urls) |
| 177 | |
| 178 | all_links = load_main_index(out_dir=OUTPUT_DIR) |
| 179 | assert len(all_links) == 12 |
| 180 | |
| 181 | |
| 182 | class TestRemove(unittest.TestCase): |
nothing calls this directly
no test coverage detected