From ef4bb28be13e99f96c9ace5936cf26a174a0e5f0 Mon Sep 17 00:00:00 2001
From: Misko Hevery
Date: Sat, 12 Feb 2011 10:13:28 -0800
Subject: Change API angular.compile(element)([scope], [element/true])
---
test/CompilerSpec.js | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
(limited to 'test/CompilerSpec.js')
diff --git a/test/CompilerSpec.js b/test/CompilerSpec.js
index 647cc366..1a93ac78 100644
--- a/test/CompilerSpec.js
+++ b/test/CompilerSpec.js
@@ -27,8 +27,7 @@ describe('compiler', function(){
compiler = new Compiler(markup, attrMarkup, directives, widgets);
compile = function(html){
var e = jqLite("
" + html + "
");
- var scope = compiler.compile(e)(e);
- return scope;
+ return scope = compiler.compile(e)().scope;
};
});
@@ -48,7 +47,7 @@ describe('compiler', function(){
};
var template = compiler.compile(e);
expect(log).toEqual("found");
- scope = template(e);
+ scope = template(angular.scope(), e).scope;
expect(e.hasClass('ng-directive')).toEqual(true);
expect(log).toEqual("found:init");
});
@@ -85,7 +84,7 @@ describe('compiler', function(){
var template = this.compile(element);
return function(marker) {
this.$onEval(function() {
- marker.after(template(element.clone()).$element);
+ marker.after(template(angular.scope(), true).view);
});
};
};
--
cgit v1.2.3