mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-10-29 18:00:15 +00:00
Authenticating services
This commit is contained in:
19
spotdl/authorize/services/tests/test_spotify.py
Normal file
19
spotdl/authorize/services/tests/test_spotify.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from spotdl.authorize.services import AuthorizeSpotify
|
||||
|
||||
import pytest
|
||||
|
||||
class TestSpotifyAuthorize:
|
||||
# TODO: Test these once we a have config.py
|
||||
# storing pre-defined default credentials.
|
||||
#
|
||||
# We'll use these credentials to create
|
||||
# a spotipy object via below tests
|
||||
|
||||
@pytest.mark.xfail
|
||||
def test_generate_token(self):
|
||||
raise NotImplementedError
|
||||
|
||||
@pytest.mark.xfail
|
||||
def test_authorize(self):
|
||||
raise NotImplementedError
|
||||
|
||||
Reference in New Issue
Block a user