Skip to content

Commit

Permalink
WIP: refs #22. Added some tests method skeletons
Browse files Browse the repository at this point in the history
  • Loading branch information
paurieraf committed May 21, 2019
1 parent f0a3b8a commit 5e0851d
Show file tree
Hide file tree
Showing 12 changed files with 44 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/music/test_lastfm.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def test_now_playing():
pass
2 changes: 2 additions & 0 deletions tests/music/test_spotify.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def test_search():
pass
Empty file removed tests/music/tests_musicbrainz.py
Empty file.
Empty file removed tests/music/tests_spotify.py
Empty file.
2 changes: 2 additions & 0 deletions tests/test_db.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def test_create_tables():
pass
14 changes: 14 additions & 0 deletions tests/test_logger.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
def test_log_command():
pass


def test_log_inline():
pass


def test_log_url_processing():
pass


def test_db_operation():
pass
24 changes: 24 additions & 0 deletions tests/test_music_bucket_bot.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
class TestCommands:
def test_handle_save_link(self):
pass

def test_handle_music_command(self):
pass

def test_handle_music_from_beginning_command(self):
pass

def test_handle_recommendations_command(self):
pass

def test_handle_now_playing_command(self):
pass

def test_handle_lastfmset_command(self):
pass

def test_handle_stats_command(self):
pass

def test_handle_search(self):
pass
File renamed without changes.
Empty file removed tests/tests_db.py
Empty file.
Empty file removed tests/tests_logger.py
Empty file.
Empty file removed tests/tests_music_bucket_bot.py
Empty file.
Empty file removed tests/tests_responser.py
Empty file.

0 comments on commit 5e0851d

Please sign in to comment.