mirror of
https://github.com/jellyfin/mopidy-jellyfin.git
synced 2024-11-27 07:30:22 +00:00
17 lines
291 B
Python
17 lines
291 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def config():
|
|
return {
|
|
'emby': {
|
|
'hostname': 'https://foo.bar',
|
|
'port': 443,
|
|
'username': 'embyuser',
|
|
'password': 'embypassword'
|
|
},
|
|
'proxy': {
|
|
'foo': 'bar'
|
|
}
|
|
}
|