Example #1
0
 def test_full_tree(self):
     c = self.make_commit(commit_time=30)
     t = Tree()
     t.add(b'data-x', 0o644, Blob().id)
     c.tree = t
     c1 = Commit()
     c1.set_raw_string(c.as_raw_string())
     self.assertEqual(t.id, c1.tree)
     self.assertEqual(c.as_raw_string(), c1.as_raw_string())
Example #2
0
 def test_full_tree(self):
     c = self.make_commit(commit_time=30)
     t = Tree()
     t.add(b'data-x', 0o644, Blob().id)
     c.tree = t
     c1 = Commit()
     c1.set_raw_string(c.as_raw_string())
     self.assertEqual(t.id, c1.tree)
     self.assertEqual(c.as_raw_string(), c1.as_raw_string())
Example #3
0
 def test_short_timestamp(self):
     c = self.make_base()
     c.commit_time = 30
     c1 = Commit()
     c1.set_raw_string(c.as_raw_string())
     self.assertEquals(30, c1.commit_time)
Example #4
0
 def test_short_timestamp(self):
     c = self.make_commit(commit_time=30)
     c1 = Commit()
     c1.set_raw_string(c.as_raw_string())
     self.assertEqual(30, c1.commit_time)