Prechádzať zdrojové kódy

Add a known broken test

Colin Powell 1 rok pred
rodič
commit
788f8ecd2c

+ 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"