/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_repository.py

Make API resemble that of python-git.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
        tests.run_git('init')
49
49
 
50
50
        repo = Repository.open('.')
51
 
        self.assertIsInstance(repo._git, git.repository.Repository)
 
51
        self.assertIsInstance(repo._git, git.repo.Repo)
52
52
 
53
53
    def test_get_revision(self):
54
54
        # GitRepository.get_revision gives a Revision object.
131
131
 
132
132
    def setUp(self):
133
133
        tests.TestCaseWithTransport.setUp(self)
134
 
        git.repository.Repository.create(self.test_dir)
 
134
        git.repo.Repo.create(self.test_dir)
135
135
        self.git_repo = Repository.open(self.test_dir)
136
136
 
137
137
    def test_supports_rich_root(self):