2017-02-28 07:24:53 +00:00
|
|
|
# MIT licensed
|
|
|
|
# Copyright (c) 2013-2017 lilydjwg <lilydjwg@gmail.com>, et al.
|
|
|
|
|
2015-11-05 12:47:46 +00:00
|
|
|
import shutil
|
|
|
|
import pytest
|
2017-07-04 09:04:29 +00:00
|
|
|
pytestmark = [pytest.mark.asyncio,
|
|
|
|
pytest.mark.skipif(shutil.which("pacman") is None,
|
|
|
|
reason="requires pacman command")]
|
2015-11-05 12:47:46 +00:00
|
|
|
|
2017-07-04 09:04:29 +00:00
|
|
|
async def test_pacman(get_version):
|
2019-11-18 08:58:44 +00:00
|
|
|
assert await get_version("ipw2100-fw", {"pacman": None}) == "1.3-10"
|
2015-11-05 12:47:46 +00:00
|
|
|
|
2017-07-04 09:04:29 +00:00
|
|
|
async def test_pacman_strip_release(get_version):
|
|
|
|
assert await get_version("ipw2100-fw", {"pacman": None, "strip-release": 1}) == "1.3"
|