* Test `Request`.
()
| 12 | */ |
| 13 | |
| 14 | function generateBaseResponse() { |
| 15 | return { |
| 16 | headers: { |
| 17 | bar: 'foo' |
| 18 | }, |
| 19 | body: { |
| 20 | foobar: 'barfoo' |
| 21 | } |
| 22 | }; |
| 23 | } |
| 24 | |
| 25 | describe('Request', function() { |
| 26 | it('should instantiate with a basic request', function() { |