mirror of
				https://github.com/KevinMidboe/spotify-downloader.git
				synced 2025-10-29 18:00:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			471 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			471 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| 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
 | |
| 
 |