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

  • Committer: John Arbash Meinel
  • Date: 2009-08-25 18:45:40 UTC
  • mto: (4634.6.15 2.0)
  • mto: This revision was merged to the branch mainline in revision 4667.
  • Revision ID: john@arbash-meinel.com-20090825184540-6dn3xjq62xhgj2gq
Add support for skipping ghost nodes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
813
813
                           'e':('b', 'c', 'd'),
814
814
                           'f':('d', 'Z'),
815
815
                           })
 
816
 
 
817
    def test_skip_ghost(self):
 
818
        self.assertSorted(['b', 'c', 'a'],
 
819
                          {'a':(), 'b':('a', 'ghost'), 'c':('a',)})