move underscore test into a div

more comfortable to include underscore with tests in some other project.
This commit is contained in:
Florian Friesdorf
2011-06-25 09:01:51 +02:00
parent 0202f9f79b
commit 9ab3ac44bb
2 changed files with 19 additions and 18 deletions

View File

@@ -41,7 +41,7 @@ $(document).ready(function() {
var doubled = _([1, 2, 3]).map(function(num){ return num * 2; });
equals(doubled.join(', '), '2, 4, 6', 'OO-style doubled numbers');
var ids = _.map(document.body.childNodes, function(n){ return n.id; });
var ids = _.map($('div.underscore-test').children(), function(n){ return n.id; });
ok(_.include(ids, 'qunit-header'), 'can use collection methods on NodeLists');
var ids = _.map(document.images, function(n){ return n.id; });

View File

@@ -16,6 +16,7 @@
<script type="text/javascript" src="speed.js"></script>
</head>
<body>
<div class="underscore-test">
<h1 id="qunit-header">Underscore Test Suite</h1>
<h2 id="qunit-banner"></h2>
<h2 id="qunit-userAgent"></h2>
@@ -36,6 +37,6 @@
if (data) { data += 12345; }; %>
<li><%= data %></li>
</script>
</div>
</body>
</html>