~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_graph.py

  • Committer: Robert Collins
  • Date: 2006-02-11 11:58:06 UTC
  • mto: (1534.1.22 integration)
  • mto: This revision was merged to the branch mainline in revision 1554.
  • Revision ID: robertc@robertcollins.net-20060211115806-732dabc1e35714ed
Give format3 working trees their own last-revision marker.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from bzrlib.selftest import TestCase
 
1
from bzrlib.tests import TestCase
2
2
from bzrlib.graph import node_distances, nodes_by_distance
3
3
 
4
4
class TestBase(TestCase):
33
33
        distances = node_distances(self.graph, descendants, 'A')
34
34
        nodes = nodes_by_distance(distances)
35
35
        self.assertEqual(nodes[0], 'D')
36
 
        assert nodes[1] in ('N', 'C')
37
 
        assert nodes[2] in ('N', 'C')
38
 
        assert nodes[3] in ('B', 'M')
39
 
        assert nodes[4] in ('B', 'M')
 
36
        self.assert_(nodes[1] in ('N', 'C'))
 
37
        self.assert_(nodes[2] in ('N', 'C'))
 
38
        self.assert_(nodes[3] in ('B', 'M'))
 
39
        self.assert_(nodes[4] in ('B', 'M'))
40
40
 
41
41
        #Ensure we don't shortcut through B when there's only a difference of
42
42
        # 1 in distance