def test_executable(self): dc = Depcheck(None, None, { "executable": "/usr/bin/env" }) dc.install()
def test_locales_exists_one(self): dc = Depcheck(None, None, { "locale-file": self.locale_file.name, "locale": "en_GB.UTF-8", }) dc.install()
def test_locales_exists_many(self): dc = Depcheck(None, None, { "locale-file": self.locale_file.name, "locale": "\n en_GB.UTF-8\n nl_NL.UTF-8", }) dc.install()
def test_empty(self): dc = Depcheck(None, None, {}) dc.install()