~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/buildd/tests/test_harness.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-11-21 04:19:35 UTC
  • mfrom: (14339.1.1 800295-delete-buildd-again)
  • Revision ID: launchpad@pqm.canonical.com-20111121041935-iwoh81iy9o5ssq09
[no-qa] [r=mbp] delete canonical.buildd,
 now it has moved to launchpad-buildd

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009 Canonical Ltd.  This software is licensed under the
2
 
# GNU Affero General Public License version 3 (see the file LICENSE).
3
 
 
4
 
__metaclass__ = type
5
 
 
6
 
import doctest
7
 
 
8
 
def test_suite():
9
 
    return doctest.DocTestSuite('canonical.buildd.tests.harness')
10