diff --git a/test/test_play.py b/test/test_play.py index 8a37509cd..68d8c2ea8 100644 --- a/test/test_play.py +++ b/test/test_play.py @@ -10,8 +10,6 @@ from mock import patch, Mock from test._common import unittest from test.helper import TestHelper -from beetsplug.play import PlayPlugin - class PlayPluginTest(unittest.TestCase, TestHelper): def setUp(self): @@ -27,6 +25,7 @@ class PlayPluginTest(unittest.TestCase, TestHelper): def test_basic(self): self.run_command('play', 'title:aNiceTitle') + def suite(): return unittest.TestLoader().loadTestsFromName(__name__)