8687.15.10
by Karl Fogel
Add the copyright header block to top-level files. |
1 |
# Copyright 2009 Canonical Ltd. This software is licensed under the
|
2 |
# GNU Affero General Public License version 3 (see the file LICENSE).
|
|
6670.1.3
by Michael Hudson
add a test template |
3 |
|
4 |
"""Module docstring goes here."""
|
|
5 |
||
6 |
__metaclass__ = type |
|
7 |
||
8 |
import unittest |
|
7213.6.60
by Jonathan Lange
Coding standards. |
9 |
|
8440.1.2
by Curtis Hovey
Updated lp.testing imports. Removed the shim |
10 |
from lp.testing import TestCase |
6670.1.3
by Michael Hudson
add a test template |
11 |
|
12 |
||
13 |
def test_suite(): |
|
14 |
return unittest.TestLoader().loadTestsFromName(__name__) |
|
15 |