| import os | |
| import pytest | |
| from integrations.huggingface_client import HuggingFaceClient | |
| def test_clean_repo_path(path, expected): | |
| client = HuggingFaceClient(repo_id="dummy/repo") | |
| assert client._clean_repo_path(path) == expected | |
| import os | |
| import pytest | |
| from integrations.huggingface_client import HuggingFaceClient | |
| def test_clean_repo_path(path, expected): | |
| client = HuggingFaceClient(repo_id="dummy/repo") | |
| assert client._clean_repo_path(path) == expected | |