(tmp_path: Path)
| 49 | |
| 50 | |
| 51 | def test_commented(tmp_path: Path) -> None: |
| 52 | os.chdir(tmp_path) |
| 53 | r = call_scdl_with_auth( |
| 54 | "-l", |
| 55 | "https://soundcloud.com/one-thousand-and-one", |
| 56 | "-C", |
| 57 | "--onlymp3", |
| 58 | "--name-format={title}", |
| 59 | ) |
| 60 | assert r.returncode == 0 |
| 61 | assert_track(tmp_path, "Wan Bushi - Eurodance Vibes (part 1+2+3).mp3", check_metadata=False) |
| 62 | assert count_files(tmp_path) == 1 |
| 63 | |
| 64 | |
| 65 | def test_playlists(tmp_path: Path) -> None: |
nothing calls this directly
no test coverage detected