Add another empty GC test
This commit is contained in:
parent
0c0cd693dd
commit
2ef9a68b08
1 changed files with 3 additions and 0 deletions
|
@ -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()
|
||||||
|
|
Reference in a new issue