mopidy/tests/backends/local/events_test.py
2013-04-29 19:45:25 +02:00

20 lines
487 B
Python

from __future__ import unicode_literals
import unittest
from mopidy.backends.local import actor
from tests import path_to_data_dir
from tests.backends.base import events
class LocalBackendEventsTest(events.BackendEventsTest, unittest.TestCase):
backend_class = actor.LocalBackend
config = {
'local': {
'media_dir': path_to_data_dir(''),
'playlists_dir': b'',
'tag_cache_file': path_to_data_dir('empty_tag_cache'),
}
}