~smagoun/whoopsie/whoopsie-lp1017637

« back to all changes in this revision

Viewing changes to backend/stats/static/js/yui/tests/console/tests/console-tests.js

  • Committer: Evan Dandrea
  • Date: 2012-05-09 05:53:45 UTC
  • Revision ID: evan.dandrea@canonical.com-20120509055345-z2j41tmcbf4as5uf
The backend now lives in lp:daisy and the website (errors.ubuntu.com) now lives in lp:errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
YUI.add('console-tests', function(Y) {
2
 
 
3
 
var suite = new Y.Test.Suite("Y.Console");
4
 
 
5
 
suite.add( new Y.Test.Case({
6
 
    name: "Lifecycle",
7
 
 
8
 
    "test default construction": function () {
9
 
    }
10
 
}));
11
 
 
12
 
suite.add( new Y.Test.Case({
13
 
    name: "API",
14
 
 
15
 
    setUp: function () {
16
 
    },
17
 
 
18
 
    tearDown: function () {
19
 
    },
20
 
 
21
 
    "test log": function () {
22
 
    },
23
 
 
24
 
    "test clearConsole": function () {
25
 
    },
26
 
 
27
 
    "test reset": function () {
28
 
    },
29
 
 
30
 
    "test collapse": function () {
31
 
    },
32
 
 
33
 
    "test expand": function () {
34
 
    },
35
 
 
36
 
    "test scrollToLatest": function () {
37
 
    },
38
 
 
39
 
    "test render": function () {
40
 
    },
41
 
 
42
 
    "test printBuffer": function () {
43
 
    }
44
 
}));
45
 
 
46
 
suite.add( new Y.Test.Case({
47
 
    name: "Attributes",
48
 
 
49
 
    "logEvent should be writeOnce": function () {
50
 
    },
51
 
 
52
 
    "logSource should be writeOnce": function () {
53
 
    },
54
 
 
55
 
    "test strings": function () {
56
 
    },
57
 
 
58
 
    "test paused": function () {
59
 
    },
60
 
 
61
 
    "test defaultCategory": function () {
62
 
    },
63
 
 
64
 
    "test defaultSource": function () {
65
 
    },
66
 
 
67
 
    "test entryTemplate": function () {
68
 
    },
69
 
 
70
 
    "test logLevel": function () {
71
 
    },
72
 
 
73
 
    "test printTimeout": function () {
74
 
    },
75
 
 
76
 
    "test printLimit": function () {
77
 
    },
78
 
 
79
 
    "test consoleLimit": function () {
80
 
    },
81
 
 
82
 
    "test newestOnTop": function () {
83
 
    },
84
 
 
85
 
    "test scrollIntoView": function () {
86
 
    },
87
 
 
88
 
    "test collapsed": function () {
89
 
    },
90
 
 
91
 
    "test style": function () {
92
 
    }
93
 
 
94
 
}));
95
 
 
96
 
suite.add( new Y.Test.Case({
97
 
    name: "Runtime expectations",
98
 
 
99
 
    setUp: function () {
100
 
    },
101
 
 
102
 
    tearDown: function () {
103
 
    },
104
 
 
105
 
    "test ": function () {
106
 
    }
107
 
}));
108
 
 
109
 
suite.add( new Y.Test.Case({
110
 
    name: "Bugs",
111
 
 
112
 
    setUp: function () {
113
 
    },
114
 
 
115
 
    tearDown: function () {
116
 
    },
117
 
 
118
 
    "test ": function () {
119
 
    }
120
 
}));
121
 
 
122
 
Y.Test.Runner.add( suite );
123
 
 
124
 
 
125
 
}, '@VERSION@' ,{requires:['console', 'test']});