~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/librarian/tests/test_storage.py

  • Committer: Colin Watson
  • Date: 2011-08-19 00:25:11 UTC
  • mfrom: (7675.1045.728 db-devel)
  • mto: This revision was merged to the branch mainline in revision 13909.
  • Revision ID: cjwatson@canonical.com-20110819002511-0x8hrqs1ckiqk53g
merge db-devel

Show diffs side-by-side

added added

removed removed

Lines of Context:
144
144
    def add(self, digest, size):
145
145
        self.id += 1
146
146
        return self.id
147
 
 
148
 
 
149
 
def test_suite():
150
 
    suite = unittest.TestSuite()
151
 
    suite.addTest(unittest.makeSuite(LibrarianStorageTestCase))
152
 
    return suite
153