diff options
| author | Misko Hevery | 2012-03-23 14:03:24 -0700 |
|---|---|---|
| committer | Misko Hevery | 2012-03-28 11:16:35 -0700 |
| commit | 2430f52bb97fa9d682e5f028c977c5bf94c5ec38 (patch) | |
| tree | e7529b741d70199f36d52090b430510bad07f233 /test/ngScenario/ScenarioSpec.js | |
| parent | 944098a4e0f753f06b40c73ca3e79991cec6c2e2 (diff) | |
| download | angular.js-2430f52bb97fa9d682e5f028c977c5bf94c5ec38.tar.bz2 | |
chore(module): move files around in preparation for more modules
Diffstat (limited to 'test/ngScenario/ScenarioSpec.js')
| -rw-r--r-- | test/ngScenario/ScenarioSpec.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/test/ngScenario/ScenarioSpec.js b/test/ngScenario/ScenarioSpec.js new file mode 100644 index 00000000..cc2efd1e --- /dev/null +++ b/test/ngScenario/ScenarioSpec.js @@ -0,0 +1,32 @@ +'use strict'; + +describe("ScenarioSpec: Compilation", function() { + var element; + + afterEach(function() { + dealoc(element); + }); + + + describe('compilation', function() { + it("should compile dom node and return scope", inject(function($rootScope, $compile) { + var node = jqLite('<div ng-init="a=1">{{b=a+1}}</div>')[0]; + element = $compile(node)($rootScope); + $rootScope.$digest(); + expect($rootScope.a).toEqual(1); + expect($rootScope.b).toEqual(2); + })); + + it("should compile jQuery node and return scope", inject(function($rootScope, $compile) { + element = $compile(jqLite('<div>{{a=123}}</div>'))($rootScope); + $rootScope.$digest(); + expect(jqLite(element).text()).toEqual('123'); + })); + + it("should compile text node and return scope", inject(function($rootScope, $compile) { + element = $compile('<div>{{a=123}}</div>')($rootScope); + $rootScope.$digest(); + expect(jqLite(element).text()).toEqual('123'); + })); + }); +}); |
