2017-02-28 07:24:53 +00:00
|
|
|
# MIT licensed
|
2020-08-17 08:21:02 +00:00
|
|
|
# Copyright (c) 2013-2020 lilydjwg <lilydjwg@gmail.com>, et al.
|
2017-02-28 07:24:53 +00:00
|
|
|
|
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):
|
2020-08-17 08:21:02 +00:00
|
|
|
assert await get_version("ipw2100-fw", {
|
|
|
|
"source": "pacman",
|
|
|
|
}) == "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):
|
2020-08-17 08:21:02 +00:00
|
|
|
assert await get_version("ipw2100-fw", {
|
|
|
|
"source": "pacman",
|
|
|
|
"strip_release": 1,
|
|
|
|
}) == "1.3"
|