(kid, index)
| 91 | it('should invoke callback with the right context', function() { |
| 92 | var lastContext; |
| 93 | var callback = function(kid, index) { |
| 94 | lastContext = this; |
| 95 | return this; |
| 96 | }; |
| 97 | |
| 98 | // TODO: Use an object to test, after non-object fragments has fully landed. |
| 99 | var scopeTester = 'scope tester'; |
no outgoing calls
no test coverage detected