summaryrefslogtreecommitdiff
path: root/tests/cli/test_unpack.py
blob: 9505caea79cc7e85a5fdd54bf639c45d7b6a1ab4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from __future__ import annotations

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))