index.html
2.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>Underscore-contrib Test Suite</title>
<link rel="stylesheet" href="vendor/qunit.css" type="text/css" media="screen">
<script src="vendor/jquery.js"></script>
<script src="vendor/qunit.js"></script>
<script src="vendor/jslitmus.js"></script>
<script src="vendor/underscore.js"></script>
<!-- contrib libraries -->
<script src="../underscore.array.builders.js"></script>
<script src="../underscore.array.selectors.js"></script>
<script src="../underscore.collections.walk.js"></script>
<script src="../underscore.function.arity.js"></script>
<script src="../underscore.function.combinators.js"></script>
<script src="../underscore.function.dispatch.js"></script>
<script src="../underscore.function.predicates.js"></script>
<script src="../underscore.function.iterators.js"></script>
<script src="../underscore.object.builders.js"></script>
<script src="../underscore.object.selectors.js"></script>
<script src="../underscore.util.existential.js"></script>
<script src="../underscore.util.trampolines.js"></script>
<script src="../underscore.util.operators.js"></script>
<script src="../underscore.util.strings.js"></script>
<!-- contrib tests -->
<script src="array.builders.js"></script>
<script src="array.selectors.js"></script>
<script src="collections.walk.js"></script>
<script src="function.arity.js"></script>
<script src="function.combinators.js"></script>
<script src="function.dispatch.js"></script>
<script src="function.predicates.js"></script>
<script src="function.iterators.js"></script>
<script src="object.builders.js"></script>
<script src="object.selectors.js"></script>
<script src="util.existential.js"></script>
<script src="util.trampolines.js"></script>
<script src="util.operators.js"></script>
<script src="util.strings.js"></script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture">
<div id="map-test">
<div id="id1"></div>
<div id="id2"></div>
</div>
</div>
</body>
</html>