Adding new tests using unit test module

This commit is contained in:
Rafael Vargas
2022-07-09 23:22:55 -03:00
parent 2dbc6c3984
commit 4fb9d8d1ba
5 changed files with 77 additions and 5 deletions

10
Tests/TestsHelper.py Normal file
View File

@@ -0,0 +1,10 @@
from Config.Configs import Singleton
class TestsConstants(Singleton):
def __init__(self) -> None:
if not super().created:
self.EMPTY_STRING_ERROR_MSG = 'Downloader with Empty String should be empty list.'
self.SPOTIFY_TRACK_URL = 'https://open.spotify.com/track/7wpnz7hje4FbnjZuWQtJHP'
self.MUSIC_TITLE_STRING = 'Experience || AMV || Anime Mix'
self.YOUTUBE_MUSIC_URL = 'https://www.youtube.com/watch?v=MvJoiv842mk'