瀏覽代碼

Add a known broken test

Colin Powell 1 年之前
父節點
當前提交
788f8ecd2c
共有 4 個文件被更改,包括 11 次插入0 次删除
  1. 0 0
      tests/__init__.py
  2. 0 0
      tests/game_tests/__init__.py
  3. 2 0
      tests/game_tests/conftest.py
  4. 9 0
      tests/game_tests/test_utils.py

+ 0 - 0
tests/__init__.py


+ 0 - 0
tests/game_tests/__init__.py


+ 2 - 0
tests/game_tests/conftest.py

@@ -0,0 +1,2 @@
+
+

+ 9 - 0
tests/game_tests/test_utils.py

@@ -0,0 +1,9 @@
+from emus_web.apps.games.utils import update_media_root_for_import
+
+
+def test_update_media_root_for_import():
+    path = "/test/media/path"
+
+    result = update_media_root_for_import(path)
+
+    assert result == "path"