/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to tests/test_git_repository.py

GitRepository.supports_rich_root() => False

Show diffs side-by-side

added added

removed removed

Lines of Context:
145
145
            " u'subfile', parent_id='subdir',"
146
146
            " sha1='0ddb53cbe2dd209f550dd8d7f1287a5ed9b1ee8b', len=None))")
147
147
 
 
148
    def test_supports_rich_root(self):
 
149
        # GitRepository.supports_rich_root is False, at least for now.
 
150
        tests.run_git('init')
 
151
        repo = repository.Repository.open('.')
 
152
        self.assertEqual(repo.supports_rich_root(), False)
 
153
 
148
154
 
149
155
class TestGitRepositoryParseRev(tests.TestCase):
150
156
    """Unit tests for GitRepository._parse_rev."""