57
57
def test_open_existing(self):
61
61
self.assertIsInstance(thebranch, branch.GitBranch)
67
self.assertEquals("<LocalGitBranch('file://%s/', 'refs/heads/master')>" % self.test_dir, repr(thebranch))
69
68
def test_last_revision_is_null(self):
73
72
self.assertEqual(revision.NULL_REVISION, thebranch.last_revision())
74
73
self.assertEqual((0, revision.NULL_REVISION),
75
74
thebranch.last_revision_info())