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 9f5b437 commit 2cec87bCopy full SHA for 2cec87b
importlib_resources/tests/test_files.py
@@ -34,6 +34,11 @@ def test_read_text(self):
34
def test_traversable(self):
35
assert isinstance(resources.files(self.data), Traversable)
36
37
+ def test_joinpath_with_multiple_args(self):
38
+ files = resources.files(self.data)
39
+ binfile = files.joinpath('subdirectory', 'binary.file')
40
+ self.assertTrue(binfile.is_file())
41
+
42
def test_old_parameter(self):
43
"""
44
Files used to take a 'package' parameter. Make sure anyone
0 commit comments