Exemplo n.º 1
0
 def test_add_commit(self):
     o = ObjectStore("foo")
     # TODO: Argh, no way to construct Git commit objects without 
     # access to a serialized form.
     o.add_objects([])
Exemplo n.º 2
0
 def test_add_objects_empty(self):
     o = ObjectStore("foo")
     o.add_objects([])
 def test_add_commit(self):
     o = ObjectStore("foo")
     # TODO: Argh, no way to construct Git commit objects without 
     # access to a serialized form.
     o.add_objects([])
 def test_add_objects_empty(self):
     o = ObjectStore("foo")
     o.add_objects([])
 def test_empty_packs(self):
     o = ObjectStore("foo")
     self.assertEquals([], o.packs)
 def test_pack_dir(self):
     o = ObjectStore("foo")
     self.assertEquals("foo/pack", o.pack_dir())