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