473
473
self.assertEqual(group_large_dirs(paths),
476
476
def test_group_deeper_dir(self):
477
477
paths = frozenset(("a/b/1", "a/b/2", "a/b/3", "a/b/4", "c"))
478
478
self.assertEqual(group_large_dirs(paths),
480
'a/b': set(['a/b/1', 'a/b/2', 'a/b/3', 'a/b/4'])})
480
'a/b': set(['a/b/1', 'a/b/2', 'a/b/3', 'a/b/4'])})
482
482
def test_subdir_included(self):