~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/windmill/tests/test_yuitests.py

  • Committer: Ian Booth
  • Date: 2011-04-19 15:10:57 UTC
  • mfrom: (12868 devel)
  • mto: This revision was merged to the branch mainline in revision 12983.
  • Revision ID: ian.booth@canonical.com-20110419151057-he56y6k29c4zeiyk
Merge from trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
__metaclass__ = type
7
7
__all__ = []
8
8
 
9
 
from lp.code.windmill.testing import CodeWindmillLayer
 
9
from lp.code.windmill.testing import CodeYUITestLayer
10
10
from lp.testing import (
11
11
    build_yui_unittest_suite,
12
12
    YUIUnitTestCase,
15
15
 
16
16
class CodeYUIUnitTestCase(YUIUnitTestCase):
17
17
 
18
 
    layer = CodeWindmillLayer
 
18
    layer = CodeYUITestLayer
19
19
    suite_name = 'CodeYUIUnitTests'
20
20
 
21
21