forked from rc/aircox
23 lines
332 B
Python
23 lines
332 B
Python
import pytest
|
|
|
|
from aircox.controller.playlist_import import PlaylistImport
|
|
|
|
|
|
@pytest.fixture
|
|
def playlist_import():
|
|
return PlaylistImport()
|
|
|
|
|
|
class TestPlaylistImport:
|
|
def test_reset(self):
|
|
pass
|
|
|
|
def test_run(self):
|
|
pass
|
|
|
|
def test_read(self):
|
|
pass
|
|
|
|
def make_playlist(self):
|
|
pass
|