~ubuntu-branches/ubuntu/precise/maas/precise-security

« back to all changes in this revision

Viewing changes to src/maasserver/static/jslibs/yui/3.4.1/tests/collection/tests/src/arraylist.js

Tags: 1.2+bzr1373+dfsg-0ubuntu1~12.04.4
* SECURITY UPDATE: failure to authenticate downloaded content (LP: #1039513)
  - debian/patches/CVE-2013-1058.patch: Authenticate downloaded files with
    GnuPG and MD5SUM files. Thanks to Julian Edwards.
  - CVE-2013-1058
* SECURITY UPDATE: configuration options may be loaded from current working
  directory (LP: #1158425)
  - debian/patches/CVE-2013-1057-1-2.patch: Do not load configuration
    options from the current working directory. Thanks to Julian Edwards.
  - CVE-2013-1057

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
var suite = new Y.Test.Suite("Y.ArrayList");
2
 
 
3
 
suite.add( new Y.Test.Case({
4
 
    name: "Lifecycle",
5
 
 
6
 
    "construct with array should not error": function () {
7
 
    },
8
 
 
9
 
    "construct after augmented class instantiation should not clobber items": function () {
10
 
    }
11
 
}));
12
 
 
13
 
suite.add( new Y.Test.Case({
14
 
    name: "API",
15
 
 
16
 
    setUp: function () {
17
 
    },
18
 
 
19
 
    "test item": function () {
20
 
    },
21
 
 
22
 
    "test each": function () {
23
 
    },
24
 
 
25
 
    "test some": function () {
26
 
    },
27
 
 
28
 
    "test indexOf": function () {
29
 
    },
30
 
 
31
 
    "test size": function () {
32
 
    },
33
 
 
34
 
    "test isEmpty": function () {
35
 
    },
36
 
 
37
 
    "test _item": function () {
38
 
    }
39
 
}));
40
 
 
41
 
suite.add( new Y.Test.Case({
42
 
    name: "Additional API",
43
 
 
44
 
    setUp: function () {
45
 
    },
46
 
 
47
 
    "test add": function () {
48
 
    },
49
 
 
50
 
    "test remove": function () {
51
 
    },
52
 
 
53
 
    "test filter": function () {
54
 
    }
55
 
}));
56
 
 
57
 
suite.add( new Y.Test.Case({
58
 
    name: "addMethod",
59
 
 
60
 
    "test addMethod": function () {
61
 
    },
62
 
 
63
 
    "methods should be chainable unless a value is returned": function () {
64
 
    }
65
 
}));
66
 
 
67
 
suite.add( new Y.Test.Case({
68
 
    name: "Array.invoke",
69
 
 
70
 
    "test Y.Array.invoke": function () {
71
 
    }
72
 
}));
73
 
 
74
 
suite.add( new Y.Test.Case({
75
 
    name: "Runtime expectations",
76
 
 
77
 
    "test ": function () {
78
 
    }
79
 
}));
80
 
 
81
 
suite.add( new Y.Test.Case({
82
 
    name: "Bugs",
83
 
 
84
 
    "test ": function () {
85
 
    }
86
 
}));
87
 
 
88
 
Y.Test.Runner.add( suite );