~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/windmill/testing.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-04-15 02:03:33 UTC
  • mfrom: (12828.3.2 yuitest-layer)
  • Revision ID: launchpad@pqm.canonical.com-20110415020333-41jio3av1iatauta
[r=allenap][bug=759844] Move the YUI tests to their own layer so that
        they can still be run even if the Windmill layer is disabled.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
__metaclass__ = type
7
7
__all__ = [
8
8
    'SoyuzWindmillLayer',
 
9
    'SoyuzYUITestLayer',
9
10
    ]
10
11
 
11
12
 
12
 
from canonical.testing.layers import BaseWindmillLayer
 
13
from canonical.testing.layers import (
 
14
    BaseWindmillLayer,
 
15
    BaseYUITestLayer,
 
16
    )
13
17
 
14
18
 
15
19
class SoyuzWindmillLayer(BaseWindmillLayer):
21
25
        super(SoyuzWindmillLayer, cls).setUp()
22
26
 
23
27
 
 
28
class SoyuzYUITestLayer(BaseYUITestLayer):
 
29
    """Layer for Code YUI tests."""
24
30
 
 
31
    @classmethod
 
32
    def setUp(cls):
 
33
        cls.base_url = cls.appserver_root_url()
 
34
        super(SoyuzYUITestLayer, cls).setUp()