~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testrevision.py

  • Committer: Robert Collins
  • Date: 2005-08-24 05:51:34 UTC
  • mto: (974.1.50) (1185.1.10) (1092.3.1)
  • mto: This revision was merged to the branch mainline in revision 1139.
  • Revision ID: robertc@robertcollins.net-20050824055134-708a7ee78516ecbc
remove TEST_CLASSES dead code and provide a bzrlib.test_suite() convenience method

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
        assert is_ancestor(revisions[3], revisions_2[4], br1)
60
60
        assert is_ancestor(revisions[3], revisions_2[3], sources)
61
61
        assert not is_ancestor(revisions[3], revisions_2[3], br1)
62
 
 
63
 
 
64
 
TEST_CLASSES = [
65
 
    TestIsAncestor,
66
 
    ]