~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_graph.py

Added explanatory comment

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
from bzrlib.tests import TestCase
2
 
from bzrlib.graph import node_distances, nodes_by_distance, Graph
 
2
from bzrlib.graph import node_distances, nodes_by_distance
3
3
 
4
4
class TestBase(TestCase):
5
 
 
6
5
    def edge_add(self, *args):
7
6
        for start, end in zip(args[:-1], args[1:]):
8
7
            if start not in self.graph:
48
47
        distances = node_distances(self.graph, descendants, 'A')
49
48
        self.assertEqual(distances['C'], 3)
50
49
 
51
 
 
52
 
class TestGraph(TestCase):
53
 
 
54
 
    def test_get_descendants(self):
55
 
        # Graph objects let you get a descendants graph in 
56
 
        # node: {direct-children:distance} which contains
57
 
        # known children, including ghost children
58
 
        graph = Graph()
59
 
        graph.add_ghost('ghost')
60
 
        graph.add_node('rev1', ['ghost'])
61
 
        # check the result contains ghosts:
62
 
        self.assertEqual({'ghost': {'rev1': 1}, 'rev1': {}},
63
 
                         graph.get_descendants())