From 4bd5122462e606b3c7871d445ac9da433d372501 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 5 Oct 2015 23:34:16 -0700 Subject: [PATCH] Update excused Underscore tests. --- test/underscore.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/test/underscore.html b/test/underscore.html index 1357e23b7..91e0383d0 100644 --- a/test/underscore.html +++ b/test/underscore.html @@ -172,13 +172,25 @@ 'OO-style doubled numbers' ], 'max': [ + 'can handle null/undefined', 'can perform a computation-based max', + 'Maximum value of an empty object', + 'Maximum value of an empty array', + 'Maximum value of a non-numeric collection', + 'Finds correct max in array starting with num and containing a NaN', + 'Finds correct max in array starting with NaN', 'Respects iterator return value of -Infinity', 'String keys use property iterator', + 'Iterator context', 'Lookup falsy iterator' ], 'min': [ + 'can handle null/undefined', 'can perform a computation-based min', + 'Minimum value of an empty object', + 'Minimum value of an empty array', + 'Minimum value of a non-numeric collection', + 'Finds correct min in array starting with NaN', 'Respects iterator return value of Infinity', 'String keys use property iterator', 'Iterator context',