Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master

alternates: test for __contains__

Changeset 44edc70423a7

Parent af0eefac08a7

committed by Jelmer Vernooij

authored by Dmitriy

Changes to one file · Browse files at 44edc70423a7 Showing diff from parent af0eefac08a7 Diff from another changeset...

 
237
238
239
 
240
241
242
 
237
238
239
240
241
242
243
@@ -237,6 +237,7 @@
  store = DiskObjectStore(self.store_dir)   self.assertRaises(KeyError, store.__getitem__, b2.id)   store.add_alternate_path(alternate_dir) + self.assertIn(b2.id, store)   self.assertEqual(b2, store[b2.id])     def test_add_alternate_path(self):