~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to standard_test_template.html

  • Committer: Graham Binns
  • Date: 2011-09-09 14:16:28 UTC
  • mto: This revision was merged to the branch mainline in revision 13914.
  • Revision ID: graham@canonical.com-20110909141628-hpasefbb2hwrgqj5
Updated the test templates to make them match the wiki.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--
 
2
Copyright 2011 Canonical Ltd.  This software is licensed under the
 
3
GNU Affero General Public License version 3 (see the file LICENSE).
 
4
-->
1
5
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
6
<html>
3
7
  <head>
4
 
  <title>Standard JS test template</title>
5
 
 
6
 
  <!-- YUI and test setup -->
7
 
  <script type="text/javascript"
8
 
          src="../../../../canonical/launchpad/icing/yui/yui/yui.js">
9
 
  </script>
10
 
  <link rel="stylesheet" href="../../../app/javascript/testing/test.css" />
11
 
  <script type="text/javascript"
12
 
          src="../../../app/javascript/testing/testrunner.js"></script>
13
 
 
14
 
  <!-- Dependency -->
15
 
  <script type="text/javascript"
16
 
    src="../../../../canonical/launchpad/icing/yui/attribute/attribute.js">
17
 
  </script>
18
 
  <script type="text/javascript"
19
 
    src="../../../../canonical/launchpad/icing/yui/event-custom/event-custom.js">
20
 
  </script>
21
 
  <script type="text/javascript"
22
 
    src="../../../../canonical/launchpad/icing/yui/oop/oop.js">
23
 
  </script>
24
 
  <script type="text/javascript"
25
 
    src="../../../app/javascript/client.js"></script>
26
 
  <!-- ADD ANY DEPENDENCIES HERE -->
27
 
 
28
 
  <!-- The module under test -->
29
 
  <script type="text/javascript" src="../$MODULE_UNDER_TEST.js"></script>
30
 
 
31
 
  <!-- The test suite -->
32
 
  <script type="text/javascript" src="$YOUR_TEST_SUITE.JS"></script>
33
 
 
34
 
  <!-- Test layout -->
35
 
  <link rel="stylesheet"
36
 
    href="../../../../canonical/launchpad/javascript/test.css" />
37
 
  <style type="text/css">
38
 
    /* CSS classes specific to this test */
39
 
    .unseen { display: none; }
40
 
  </style>
41
 
</head>
42
 
<body class="yui3-skin-sam">
43
 
</body>
 
8
    <title>Launchpad TESTLIBRARY</title>
 
9
    <!-- YUI and test setup -->
 
10
    <script type="text/javascript"
 
11
            src="../../../../../canonical/launchpad/icing/yui/yui/yui.js">
 
12
    </script>
 
13
    <link rel="stylesheet" href="../../../../app/javascript/testing/test.css" />
 
14
    <script type="text/javascript"
 
15
            src="../../../../app/javascript/testing/testrunner.js"></script>
 
16
 
 
17
    <!-- The module under test -->
 
18
    <script type="text/javascript" src="../TESTLIBRARY.js"></script>
 
19
 
 
20
    <!-- The test suite -->
 
21
    <script type="text/javascript" src="test_TESTLIBRARY.js"></script>
 
22
  </head>
 
23
  <body class="yui-skin-sam">
 
24
 
 
25
    <!-- The example markup required by the script to run -->
 
26
    <div id="expected-id">
 
27
      ...
 
28
    </div>
 
29
  </body>
44
30
</html>
 
31