blob: ce28ff038306d0c5350c6a3c632d838cecdc6daf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
from __future__ import annotations
from pathlib import Path
from wheel._cli.unpack import unpack
def test_unpack(wheel_paths: list[Path], tmp_path: Path) -> None:
"""
Make sure 'wheel unpack' works.
This also verifies the integrity of our testing wheel files.
"""
for wheel_path in wheel_paths:
unpack(wheel_path, tmp_path)
|