'use strict'; describe('module loader', function() { var window; beforeEach(function () { window = {}; setupModuleLoader(window); }); it('should set up namespace', function() { expect(window.angular).toBeDefined(); expect(window.angular.module).toBeDefined(); }); it('should not override existing namespace', function() { var angular = window.angular; var module = angular.module; setupModuleLoader(window); expect(window.angular).toBe(angular); expect(window.angular.module).toBe(module); }); it('should record calls', function() { var otherModule = window.angular.module('other', []); otherModule.config('otherInit'); var myModule = window.angular.module('my', ['other'], 'config'); expect(myModule. service('sk', 'sv'). factory('fk', 'fv'). value('k', 'v'). filter('f', 'ff'). config('init2'). run('runBlock')).toBe(myModule); expect(myModule.requires).toEqual(['other']); expect(myModule._invokeQueue).toEqual([ ['$injector', 'invoke', ['config'] ], ['$provide', 'service', ['sk', 'sv'] ], ['$provide', 'factory', ['fk', 'fv'] ], ['$provide', 'value', ['k', 'v'] ], ['$filterProvider', 'register', ['f', 'ff'] ], ['$injector', 'invoke', ['init2'] ] ]); expect(myModule._runBlocks).toEqual(['runBlock']); }); it('should allow module redefinition', function() { expect(window.angular.module('a', [])).not.toBe(window.angular.module('a', [])); }); it('should complain of no module', function() { expect(function() { window.angular.module('dontExist'); }).toThrow('No module: dontExist'); }); }); 90b150993ec62d8a3743'>treecommitdiffstats
path: root/src/scenario/SpecRunner.js
blob: 0d6274a424c22ebd4707180e30de32c3e211d9d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141