aboutsummaryrefslogtreecommitdiffstats
path: root/solo-tool-project/test/solo_tool_songs_integrationtest.py
diff options
context:
space:
mode:
authorEddy Pedroni <epedroni@pm.me>2025-07-17 13:45:11 +0200
committerEddy Pedroni <epedroni@pm.me>2025-07-17 13:45:11 +0200
commit89dcddce5e215400150232befddebc83f45d64d8 (patch)
tree428007ef8f728b86f3284d32b9e1bcb8e920ca43 /solo-tool-project/test/solo_tool_songs_integrationtest.py
parent878ed5d699597dfa197636efe67f38000b67fe7e (diff)
Remove songpool dependency from SoloTool
Diffstat (limited to 'solo-tool-project/test/solo_tool_songs_integrationtest.py')
-rw-r--r--solo-tool-project/test/solo_tool_songs_integrationtest.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/solo-tool-project/test/solo_tool_songs_integrationtest.py b/solo-tool-project/test/solo_tool_songs_integrationtest.py
index 6030d19..0acfc2b 100644
--- a/solo-tool-project/test/solo_tool_songs_integrationtest.py
+++ b/solo-tool-project/test/solo_tool_songs_integrationtest.py
@@ -66,13 +66,6 @@ def test_songAdditionEdgeCases(uut, mockPlayer, testSongs):
assert mockPlayer.currentSong == testSongs[0]
assert uut.songs == testSongs
- # Songs must exist in the filesystem
- with pytest.raises(FileNotFoundError):
- uut.addSong("/not/a/real/file")
- assert uut.song == 0
- assert mockPlayer.currentSong == testSongs[0]
- assert uut.songs == testSongs
-
def test_songSelectionNotification(uut, testSongs):
selectionCalled = False
selectionValue = None