(tmp_path: Path)
| 63 | |
| 64 | |
| 65 | def test_playlists(tmp_path: Path) -> None: |
| 66 | os.chdir(tmp_path) |
| 67 | r = call_scdl_with_auth( |
| 68 | "-l", |
| 69 | "https://soundcloud.com/one-thousand-and-one", |
| 70 | "-p", |
| 71 | "--onlymp3", |
| 72 | ) |
| 73 | assert r.returncode == 0 |
| 74 | assert count_files(tmp_path) == 3 |
| 75 | |
| 76 | |
| 77 | def test_reposts(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected