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:
15
spotdl/encode/tests/test_encode_exceptions.py
Normal file
15
spotdl/encode/tests/test_encode_exceptions.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from spotdl.encode.exceptions import EncoderNotFoundError
|
||||
from spotdl.encode.exceptions import FFmpegNotFoundError
|
||||
from spotdl.encode.exceptions import AvconvNotFoundError
|
||||
|
||||
|
||||
class TestEncoderNotFoundSubclass:
|
||||
def test_encoder_not_found_subclass(self):
|
||||
assert issubclass(FFmpegNotFoundError, Exception)
|
||||
|
||||
def test_ffmpeg_not_found_subclass(self):
|
||||
assert issubclass(FFmpegNotFoundError, EncoderNotFoundError)
|
||||
|
||||
def test_avconv_not_found_subclass(self):
|
||||
assert issubclass(AvconvNotFoundError, EncoderNotFoundError)
|
||||
|
||||
Reference in New Issue
Block a user