summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2012-01-30 15:40:50 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2012-01-30 15:40:50 +0100
commit055dc32f4025f081293cee32cde935100532c651 (patch)
treee26bc10db978039c73e542d8896d7ed674e7c321 /tests
parent38165cbeb26313bb468dcf527a843ba55571a8f2 (diff)
downloadpython-apt-055dc32f4025f081293cee32cde935100532c651.tar.gz
RED: apt.Version should have "policy_priority" property
Diffstat (limited to 'tests')
-rw-r--r--tests/test_policy.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/test_policy.py b/tests/test_policy.py
index 2aab6722..449c3961 100644
--- a/tests/test_policy.py
+++ b/tests/test_policy.py
@@ -11,7 +11,7 @@ import unittest
class TestAptPolicy(unittest.TestCase):
- def test_apt_policy(self):
+ def test_apt_policy_lowlevel(self):
# get a policy
cache = apt.Cache()
policy = cache._depcache.policy
@@ -23,10 +23,16 @@ class TestAptPolicy(unittest.TestCase):
for ver in pkg.versions:
lowlevel_ver = ver._cand
for pkgfile, i in lowlevel_ver.file_list:
- #print verfile, i, policy.get_priority(pkgfile)
+ print pkgfile, i, policy.get_priority(pkgfile)
self.assertTrue(policy.get_priority(pkgfile) > 1)
self.assertTrue(policy.get_priority(pkgfile) < 1001)
+ def test_apt_policy_highlevel(self):
+ cache = apt.Cache()
+ pkg = cache["apt"]
+ self.assertTrue(pkg.candidate.policy_priority > 1 and
+ pkg.candidate.policy_priority < 1001)
+
if __name__ == "__main__":
unittest.main()