adding test case for previous commit

This commit is contained in:
Jeremy Ashkenas
2009-12-09 11:20:09 -05:00
parent 99564138e8
commit 2ba87d6b44

View File

@@ -52,6 +52,7 @@ $(document).ready(function() {
ok(_.isEqual(NaN, NaN), 'NaN is equal to NaN');
ok(_.isEqual(new Date(100), new Date(100)), 'identical dates are equal');
ok(_.isEqual((/hello/ig), (/hello/ig)), 'identical regexes are equal');
ok(!_.isEqual(null, [1]), 'a falsy is never equal to a truthy');
});
test("objects: isEmpty", function() {