~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

  • Committer: Robert Collins
  • Date: 2005-12-24 02:20:45 UTC
  • mto: (1185.50.57 bzr-jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1550.
  • Revision ID: robertc@robertcollins.net-20051224022045-14efc8dfa0e1a4e9
Start tests for api usage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
                      bzrlib.store,
53
53
                      ]
54
54
def packages_to_test():
 
55
    """Return a list of packages to test.
 
56
 
 
57
    The packages are not globally imported so that import failures are
 
58
    triggered when running selftest, not when importing the command.
 
59
    """
 
60
    import bzrlib.doc
55
61
    import bzrlib.tests.blackbox
56
62
    return [
 
63
            bzrlib.doc,
57
64
            bzrlib.tests.blackbox
58
65
            ]
59
66