- import pytest
- from emus_web.apps.games.utils import update_media_root_for_import
- @pytest.mark.skip(reason="Importing is borked in tests")
- def test_update_media_root_for_import():
- path = "/test/media/path"
- result = update_media_root_for_import(path)
- assert result == "path"
|