aboutsummaryrefslogtreecommitdiffstats
path: root/test/ApiSpecs.js
diff options
context:
space:
mode:
authorIgor Minar2012-01-05 23:03:45 -0800
committerIgor Minar2012-01-06 12:19:39 -0800
commitcd9a7b9608707c34bec2316ee8c789a617d22a7b (patch)
tree407b7260e8159fe0c9aeaf301e067a7f9a5b1149 /test/ApiSpecs.js
parent1dccaaaaa27a4db91d5271438688bc96e199e561 (diff)
downloadangular.js-cd9a7b9608707c34bec2316ee8c789a617d22a7b.tar.bz2
fix(ng:repeat): support repeating over array with null
typeof null == 'object', but it doesn't behave like an object because its properties can't be dereferenced, so we need to special-case it. Closes #702
Diffstat (limited to 'test/ApiSpecs.js')
-rw-r--r--test/ApiSpecs.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/ApiSpecs.js b/test/ApiSpecs.js
index a0833fba..35a85bd4 100644
--- a/test/ApiSpecs.js
+++ b/test/ApiSpecs.js
@@ -36,6 +36,25 @@ describe('api', function() {
expect(map.shift('key')).toEqual(undefined);
expect(map[hashKey('key')]).toEqual(undefined);
});
+
+ it('should support primitive and object keys', function() {
+ var obj1 = {},
+ obj2 = {};
+
+ var map = new HashQueueMap();
+ map.push(obj1, 'a1');
+ map.push(obj1, 'a2');
+ map.push(obj2, 'b');
+ map.push(1, 'c');
+ map.push(undefined, 'd');
+ map.push(null, 'e');
+
+ expect(map[hashKey(obj1)]).toEqual(['a1', 'a2']);
+ expect(map[hashKey(obj2)]).toEqual(['b']);
+ expect(map[hashKey(1)]).toEqual(['c']);
+ expect(map[hashKey(undefined)]).toEqual(['d']);
+ expect(map[hashKey(null)]).toEqual(['e']);
+ });
});
});