(tmp_path: Path)
| 9 | |
| 10 | |
| 11 | def test_all(tmp_path: Path) -> None: |
| 12 | os.chdir(tmp_path) |
| 13 | r = call_scdl_with_auth( |
| 14 | "-l", |
| 15 | "https://soundcloud.com/one-thousand-and-one", |
| 16 | "-a", |
| 17 | "--onlymp3", |
| 18 | ) |
| 19 | assert r.returncode == 0 |
| 20 | assert count_files(tmp_path) == 5 |
| 21 | |
| 22 | |
| 23 | def test_tracks(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected