12 lines
196 B
Python
12 lines
196 B
Python
|
from queue import Queue
|
||
|
from unittest.mock import MagicMock
|
||
|
|
||
|
from libretime_playout.player.file import PypoFile
|
||
|
|
||
|
|
||
|
def test_file_thread():
|
||
|
PypoFile(
|
||
|
Queue(),
|
||
|
MagicMock(),
|
||
|
)
|