blob: 531ca7deec7d7b2fa0c1cfe666dae37a9364b043 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from wheel.cli.unpack import unpack
def test_unpack(wheel_paths, tmpdir):
"""
Make sure 'wheel unpack' works.
This also verifies the integrity of our testing wheel files.
"""
for wheel_path in wheel_paths:
unpack(wheel_path, str(tmpdir))
|