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
|
|
|
|
from tests.helper import ExternalVersionTestCase
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.skipif(shutil.which("pacman") is None,
|
|
|
|
reason="requires pacman command")
|
|
|
|
class PacmanTest(ExternalVersionTestCase):
|
|
|
|
def test_pacman(self):
|
2017-06-26 17:31:05 +00:00
|
|
|
self.assertEqual(self.sync_get_version("ipw2100-fw", {"pacman": None}), "1.3-8")
|
2015-11-05 12:47:46 +00:00
|
|
|
|
|
|
|
def test_pacman_strip_release(self):
|
|
|
|
self.assertEqual(self.sync_get_version("ipw2100-fw", {"pacman": None, "strip-release": 1}), "1.3")
|