mirror of
				https://github.com/KevinMidboe/spotify-downloader.git
				synced 2025-10-29 18:00:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			374 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			374 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from spotdl.encode.exceptions import EncoderNotFoundError
 | |
| from spotdl.encode.exceptions import FFmpegNotFoundError
 | |
| 
 | |
| 
 | |
| class TestEncoderNotFoundSubclass:
 | |
|     def test_encoder_not_found_subclass(self):
 | |
|         assert issubclass(FFmpegNotFoundError, Exception)
 | |
| 
 | |
|     def test_ffmpeg_not_found_subclass(self):
 | |
|         assert issubclass(FFmpegNotFoundError, EncoderNotFoundError)
 | |
| 
 |