diff options
| author | Igor Minar | 2011-01-13 07:55:31 -0800 | 
|---|---|---|
| committer | Igor Minar | 2011-01-13 07:55:31 -0800 | 
| commit | b0be87f663e8684c1369e1bff740c1750ba17080 (patch) | |
| tree | 8faf8ffdcc6654499e6a1a5851e9a3f6bac062d4 /test | |
| parent | 9ccd2f0412ff97cdcb5c37fa3b75fea027d4e925 (diff) | |
| download | angular.js-b0be87f663e8684c1369e1bff740c1750ba17080.tar.bz2 | |
fix for angular.Object.equals to handle equals({},null)
Diffstat (limited to 'test')
| -rw-r--r-- | test/AngularSpec.js | 22 | 
1 files changed, 22 insertions, 0 deletions
| diff --git a/test/AngularSpec.js b/test/AngularSpec.js index 62298465..0e6b2bfa 100644 --- a/test/AngularSpec.js +++ b/test/AngularSpec.js @@ -89,6 +89,28 @@ describe('equals', function(){    it('should ignore functions', function(){      expect(equals({func: function() {}}, {bar: function() {}})).toEqual(true);    }); + +  it('should work well with nulls', function() { +    expect(equals(null, '123')).toBe(false); +    expect(equals('123', null)).toBe(false); + +    var obj = {foo:'bar'}; +    expect(equals(null, obj)).toBe(false); +    expect(equals(obj, null)).toBe(false); + +    expect(equals(null, null)).toBe(true); +  }); + +  it('should work well with undefined', function() { +    expect(equals(undefined, '123')).toBe(false); +    expect(equals('123', undefined)).toBe(false); + +    var obj = {foo:'bar'}; +    expect(equals(undefined, obj)).toBe(false); +    expect(equals(obj, undefined)).toBe(false); + +    expect(equals(undefined, undefined)).toBe(true); +  });  });  describe('parseKeyValue', function() { | 
