1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""
Run the view tests.
"""
import logging
import os
import unittest
from canonical.launchpad.testing.systemdocs import (
LayeredDocFileSuite, setUp, tearDown)
from canonical.testing import LaunchpadFunctionalLayer
here = os.path.dirname(os.path.realpath(__file__))
def test_suite():
suite = unittest.TestSuite()
testsdir = os.path.abspath(here)
# Add tests using default setup/teardown
filenames = [filename
for filename in os.listdir(testsdir)
if filename.endswith('.txt')]
# Sort the list to give a predictable order.
filenames.sort()
for filename in filenames:
path = filename
one_test = LayeredDocFileSuite(
path, setUp=setUp, tearDown=tearDown,
layer=LaunchpadFunctionalLayer,
stdout_logging_level=logging.WARNING
)
suite.addTest(one_test)
return suite
|