6670.1.3
by Michael Hudson
add a test template |
1 |
# Copyright 2008 Canonical Ltd. All rights reserved.
|
2 |
||
3 |
"""Module docstring goes here."""
|
|
4 |
||
5 |
__metaclass__ = type |
|
6 |
||
7 |
import unittest |
|
7213.6.60
by Jonathan Lange
Coding standards. |
8 |
|
7213.6.59
by Jonathan Lange
Add a subtle hint... |
9 |
from canonical.launchpad.testing import TestCase |
6670.1.3
by Michael Hudson
add a test template |
10 |
|
11 |
||
12 |
def test_suite(): |
|
13 |
return unittest.TestLoader().loadTestsFromName(__name__) |
|
14 |