diff options
| author | Igor Minar | 2012-04-09 11:49:43 -0700 |
|---|---|---|
| committer | Igor Minar | 2012-04-09 11:49:51 -0700 |
| commit | b5406d276d73bcb0319eb451fa1cf2aec1e67946 (patch) | |
| tree | 80b665d3fa7b51de7a093d5b3186fbdb9e05c95f | |
| parent | 0f89383d981d0144c6db92b163edcc545d6b5222 (diff) | |
| download | angular.js-b5406d276d73bcb0319eb451fa1cf2aec1e67946.tar.bz2 | |
chore(ngBind): remove obsolete test
this test is not testing what it claims it is.
we don't need it any more
| -rw-r--r-- | test/ng/directive/ngBindSpec.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/test/ng/directive/ngBindSpec.js b/test/ng/directive/ngBindSpec.js index 628b0092..b3c63b34 100644 --- a/test/ng/directive/ngBindSpec.js +++ b/test/ng/directive/ngBindSpec.js @@ -45,13 +45,6 @@ describe('ngBind*', function() { $rootScope.$digest(); expect(element.text()).toEqual('-0false'); })); - - - it('should render object as JSON ignore $$', inject(function($rootScope, $compile) { - element = $compile('<div>{{ {key:"value", $$key:"hide"} }}</div>')($rootScope); - $rootScope.$digest(); - expect(fromJson(element.text())).toEqual({key:'value'}); - })); }); |
