Files
mongo/jstests/aggregation/extras/debug.js
2012-05-21 12:40:39 -07:00

35 lines
592 B
JavaScript

function assert(b, m) {
if (!b) alert(m);
}
function ObjectId(id) {
return id;
}
var t1result = [
{
"_id" : ObjectId("4dc07fedd8420ab8d0d4066d"),
"pageViews" : 5,
"tags" : [
"fun",
"good"
]
},
{
"_id" : ObjectId("4dc07fedd8420ab8d0d4066e"),
"pageViews" : 7,
"tags" : [
"fun",
"nasty"
]
},
{
"_id" : ObjectId("4dc07fedd8420ab8d0d4066f"),
"pageViews" : 6,
"tags" : [
"nasty",
"filthy"
]
}
];