aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Minar2012-04-09 11:49:43 -0700
committerIgor Minar2012-04-09 11:49:51 -0700
commitb5406d276d73bcb0319eb451fa1cf2aec1e67946 (patch)
tree80b665d3fa7b51de7a093d5b3186fbdb9e05c95f
parent0f89383d981d0144c6db92b163edcc545d6b5222 (diff)
downloadangular.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.js7
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'});
- }));
});