Upload 6 files
Browse files- tests/test_model_id.py +5 -0
tests/test_model_id.py
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from src.jobs import normalize_target_space
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
def test_normalize_target_space_still_user_namespace():
|
| 5 |
+
assert normalize_target_space(username="alice", target_slug="demo", run_id="r") == "alice/demo"
|