mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-10-29 18:00:15 +00:00
21 lines
499 B
Python
21 lines
499 B
Python
import os
|
|
|
|
from spotdl import const
|
|
from spotdl import spotdl
|
|
|
|
import loader
|
|
|
|
loader.load_defaults()
|
|
|
|
TRACK_URL = "http://open.spotify.com/track/0JlS7BXXD07hRmevDnbPDU"
|
|
|
|
|
|
def test_dry_download_list(tmpdir):
|
|
const.args.folder = str(tmpdir)
|
|
const.args.dry_run = True
|
|
file_path = os.path.join(const.args.folder, "test_list.txt")
|
|
with open(file_path, "w") as f:
|
|
f.write(TRACK_URL)
|
|
downloaded_song, *_ = spotdl.download_list(file_path)
|
|
assert downloaded_song == TRACK_URL
|