(options)
| 177 | ; |
| 178 | |
| 179 | function createController(options) { |
| 180 | options = options || { embedded: false }; |
| 181 | |
| 182 | controller = new Controller(events, dom, { |
| 183 | isEmbedded: function () { return options.embedded; } |
| 184 | }); |
| 185 | } |
| 186 | |
| 187 | beforeEach(function () { |
| 188 | events = new EventEmitter(); |
no outgoing calls
no test coverage detected