/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 bzrlib/tests/test_ancestry.py

  • Committer: Aaron Bentley
  • Date: 2005-12-25 00:38:48 UTC
  • mto: (1185.67.11 bzr.revision-storage)
  • mto: This revision was merged to the branch mainline in revision 1550.
  • Revision ID: aaron.bentley@utoronto.ca-20051225003848-111ac71170cb2605
Renamed Branch.storage to Branch.repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
                  allow_pointless=True,
40
40
                  rev_id='tester@foo--2')
41
41
 
42
 
        ancs = b.storage.get_ancestry('tester@foo--2')
 
42
        ancs = b.repository.get_ancestry('tester@foo--2')
43
43
        self.assertEqual([None, 'tester@foo--1', 'tester@foo--2'], ancs)
44
44
        self.assertEqual([None, 'tester@foo--1'], 
45
 
                         b.storage.get_ancestry('tester@foo--1'))
 
45
                         b.repository.get_ancestry('tester@foo--1'))
46
46
 
47
47
    def test_none_is_always_an_ancestor(self):
48
48
        b = Branch.initialize(u'.')