We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c54c4cf commit d4c2470Copy full SHA for d4c2470
src/pyff/test/test_md_api.py
@@ -13,6 +13,8 @@
13
from pyff.test.test_pipeline import PipeLineTest
14
from pyff.constants import config
15
16
+from urllib.parse import quote as urlescape
17
+
18
19
class PyFFAPITest(PipeLineTest):
20
"""
@@ -208,3 +210,5 @@ def test_api_resources(self):
208
210
209
211
last_seen = datetime.fromisoformat(data[0]['Last Seen'])
212
assert (last_seen - now).total_seconds() < 60
213
214
+ assert os.path.exists(os.path.join(config.local_copy_dir, urlescape(f'file://{self.test01}')))
0 commit comments