Add another empty GC test

This commit is contained in:
Joseph Schorr 2014-10-17 17:49:58 -04:00
parent 0c0cd693dd
commit 2ef9a68b08

View file

@ -195,5 +195,8 @@ class TestGarbageColection(unittest.TestCase):
self.gcNow(repository) self.gcNow(repository)
self.assertNotDeleted(repository,'i1', 'i2', 'i3', 't1', 't2', 't3', 'f1', 'f2') self.assertNotDeleted(repository,'i1', 'i2', 'i3', 't1', 't2', 't3', 'f1', 'f2')
def test_gc_storage_empty(self):
model.garbage_collect_storage(set())
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()