aboutsummaryrefslogtreecommitdiffstats
path: root/test/directivesSpec.js
diff options
context:
space:
mode:
authorMisko Hevery2011-09-08 13:56:29 -0700
committerIgor Minar2011-10-11 11:01:45 -0700
commit4f78fd692c0ec51241476e6be9a4df06cd62fdd6 (patch)
tree91f70bb89b9c095126fbc093f51cedbac5cb0c78 /test/directivesSpec.js
parentdf6d2ba3266de405ad6c2f270f24569355706e76 (diff)
downloadangular.js-4f78fd692c0ec51241476e6be9a4df06cd62fdd6.tar.bz2
feat(forms): new and improved forms
Diffstat (limited to 'test/directivesSpec.js')
-rw-r--r--test/directivesSpec.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/directivesSpec.js b/test/directivesSpec.js
index c925bdb5..1cbb92b0 100644
--- a/test/directivesSpec.js
+++ b/test/directivesSpec.js
@@ -80,6 +80,11 @@ describe("directive", function() {
expect(scope.$element.text()).toEqual('-0false');
});
+ it('should render object as JSON ignore $$', function(){
+ var scope = compile('<div>{{ {key:"value", $$key:"hide"} }}</div>');
+ scope.$digest();
+ expect(fromJson(scope.$element.text())).toEqual({key:'value'});
+ });
});
describe('ng:bind-template', function() {
@@ -103,6 +108,12 @@ describe("directive", function() {
expect(innerText).toEqual('INNER');
});
+ it('should render object as JSON ignore $$', function(){
+ var scope = compile('<pre>{{ {key:"value", $$key:"hide"} }}</pre>');
+ scope.$digest();
+ expect(fromJson(scope.$element.text())).toEqual({key:'value'});
+ });
+
});
describe('ng:bind-attr', function() {