diff options
Diffstat (limited to 'solo-tool-project/test/solo_tool_keypoints_integrationtest.py')
-rw-r--r-- | solo-tool-project/test/solo_tool_keypoints_integrationtest.py | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/solo-tool-project/test/solo_tool_keypoints_integrationtest.py b/solo-tool-project/test/solo_tool_keypoints_integrationtest.py index a0a8663..3db86f5 100644 --- a/solo-tool-project/test/solo_tool_keypoints_integrationtest.py +++ b/solo-tool-project/test/solo_tool_keypoints_integrationtest.py @@ -1,22 +1,6 @@ import pytest -from solo_tool.solo_tool import SoloTool -from player_mock import Player as MockPlayer - -@pytest.fixture -def mockPlayer(): - return MockPlayer() - -@pytest.fixture -def uut(mockPlayer): - return SoloTool(mockPlayer) - -@pytest.fixture -def testSongs(): - return [ - "test.flac", - "test.mp3" - ] +from fixtures import soloTool as uut, songPool, mockPlayer, testSongs def test_keyPointAndSongSelection(uut, mockPlayer, testSongs): def checkJump(before, expectedAfter): |