Example #1
0
 def testSingleList(self):
     """Verify that pprint_pkglist proper handles a single list (IndexError)"""
     try:
         res = up2dateUtils.pprint_pkglist(self.pkgList5)
         print res
     except IndexError:
         pass
     else:
         self.fail("expected a IndexError")
Example #2
0
 def testEmptyList(self):
     """Verify that pprint_pkglist properly handles a empty list"""
     res = up2dateUtils.pprint_pkglist(self.pkgList2)
     assert res == []
Example #3
0
 def testTuple(self):
     """Verify that pprint_pkglist properly handles a single tuple"""
     res = up2dateUtils.pprint_pkglist(self.pkgList4)
     assert res == "foo-1.0-1"
Example #4
0
 def testPprint_pkglist(self):
     """Verify that pprint_pkglist properly formats a package list"""
     res = up2dateUtils.pprint_pkglist(self.pkgList1)
     assert res == ['foo-1.0-1', 'bar-2.0-2']