~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/testing/__init__.py

appserver layer

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
 
53
53
 
54
54
# Imported here to avoid circular import issues
55
 
from canonical.testing.layers import (
56
 
    ExperimentalLaunchpadZopelessLayer,
57
 
    BaseLayer, DatabaseLayer, LibrarianLayer, FunctionalLayer,
58
 
    LaunchpadLayer, ZopelessLayer, LaunchpadFunctionalLayer,
59
 
    LaunchpadZopelessLayer, PageTestLayer, TwistedLayer, LaunchpadScriptLayer,
60
 
    TwistedLaunchpadZopelessLayer)
 
55
# pylint: disable-msg=W0401
 
56
from canonical.testing.layers import *
 
57
from canonical.testing.layers import __all__ as layers_all
 
58
__all__.extend(layers_all)