~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/tests/test_doc.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-31 00:26:32 UTC
  • mfrom: (14606.4.19 apocaremains-2)
  • Revision ID: launchpad@pqm.canonical.com-20111231002632-67fafhhz150cct3b
[r=wgrant][no-qa] Explode canonical.lazr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
import os
9
9
 
 
10
from lp.services.testing import build_test_suite
10
11
from lp.testing.layers import LaunchpadFunctionalLayer
11
 
from lp.services.testing import build_test_suite
12
12
from lp.testing.systemdocs import (
13
13
    LayeredDocFileSuite,
14
14
    setUp,
24
24
        setUp=setUp, tearDown=tearDown,
25
25
        layer=LaunchpadFunctionalLayer,
26
26
        ),
 
27
    'menus.txt': LayeredDocFileSuite(
 
28
        '../doc/menus.txt', layer=None,
 
29
        ),
27
30
    }
28
31
 
29
32