test(util) rm forEach

This commit is contained in:
coderaiser 2014-12-16 03:46:47 -05:00
parent 3474059d00
commit 7eca5063d2

View file

@ -153,26 +153,6 @@
});
});
describe('forEach', function() {
it('should call arrays forEach on any type', function() {
var str = '',
obj = {
0: 'a',
1: 'b',
2: 'c',
length: 3
};
Util.forEach(obj, function(item) {
str += item;
});
str.should.be.equal('abc');
});
});
});
})();