diff options
author | eliott <eliott@cactuswax.net> | 2008-04-17 23:56:18 -0700 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2008-04-17 23:56:18 -0700 |
commit | 532edf85eb036631d7d007a4a2db7728edf12bb7 (patch) | |
tree | 70b5a4864f30f68e6f4979b66ffa6a716598874c /main/tests.py | |
parent | 42c88bd1b945e9eae6ec584d9f17b92dbde2eb8f (diff) |
Modified get_depends handling slightly
Diffstat (limited to 'main/tests.py')
-rw-r--r-- | main/tests.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/main/tests.py b/main/tests.py index 7b870c92..d0e87729 100644 --- a/main/tests.py +++ b/main/tests.py @@ -21,7 +21,10 @@ class ModelTest(TestCase): Test the Package object's get_depends() method """ p = Package.objects.get(pkgname='abs',arch__name__iexact='i686') - expected = [(7L, 'bash', ''), (None, 'rsync', None)] + dep1 = {'dep': PackageDepend.objects.get(id=1), + 'pkg': Package.objects.get(id=7)} + dep2 = {'dep': PackageDepend.objects.get(id=2), 'pkg': None} + expected = [dep1, dep2] results = p.get_depends() self.failUnlessEqual(results, expected) del p |