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