1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/tests/unit/test_cmdoptions.py

15 lines
367 B
Python

import pytest
from pip._internal.cli.cmdoptions import _convert_python_version
@pytest.mark.parametrize('value, expected', [
('2', (2,)),
('3', (3,)),
('34', (3, 4)),
# Test a 2-digit minor version.
('310', (3, 10)),
])
def test_convert_python_version(value, expected):
actual = _convert_python_version(value)
assert actual == expected