From 2ef9a68b08039419ea60f24791eb2f9a47c2ee76 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Fri, 17 Oct 2014 17:49:58 -0400 Subject: [PATCH] Add another empty GC test --- test/test_gc.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test_gc.py b/test/test_gc.py index 3e5645bea..b5785e36c 100644 --- a/test/test_gc.py +++ b/test/test_gc.py @@ -195,5 +195,8 @@ class TestGarbageColection(unittest.TestCase): self.gcNow(repository) 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__': unittest.main()