test_utils.py 289 B

1234567891011
  1. import pytest
  2. from emus_web.apps.games.utils import update_media_root_for_import
  3. @pytest.mark.skip(reason="Importing is borked in tests")
  4. def test_update_media_root_for_import():
  5. path = "/test/media/path"
  6. result = update_media_root_for_import(path)
  7. assert result == "path"