(filename)
| 40 | ('rbenv.tar.gz', 'ruby-build.tar.gz', 'ruby-download.tar.gz'), |
| 41 | ) |
| 42 | def test_archive_root_stat(filename): |
| 43 | with _resource_bytesio(filename) as f: |
| 44 | with tarfile.open(fileobj=f) as tarf: |
| 45 | root, _, _ = filename.partition('.') |
| 46 | assert oct(tarf.getmember(root).mode) == '0o755' |
| 47 | |
| 48 | |
| 49 | def _setup_hello_world(tmp_path): |
nothing calls this directly
no test coverage detected