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',