~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to standard_test_template.py

  • Committer: Jonathan Lange
  • Date: 2010-01-12 03:07:09 UTC
  • mto: (10130.7.3 builder-behavior)
  • mto: This revision was merged to the branch mainline in revision 10225.
  • Revision ID: jml@canonical.com-20100112030709-cwwfoj31n6s4wh5o
Update the templates to have XXXs on the module docstring.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright 2010 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
3
 
4
 
"""Module docstring goes here."""
 
4
"""XXX: Module docstring goes here."""
5
5
 
6
6
__metaclass__ = type
7
7
 
12
12
 
13
13
def test_suite():
14
14
    return unittest.TestLoader().loadTestsFromName(__name__)
15