nvchecker/tests/test_pacman.py

17 lines
573 B
Python
Raw Normal View History

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