(count)
| 7 | var inflightRequestThrottle = restify.plugins.inflightRequestThrottle; |
| 8 | |
| 9 | function fakeServer(count) { |
| 10 | return { |
| 11 | inflightRequests: function() { |
| 12 | return count; |
| 13 | } |
| 14 | }; |
| 15 | } |
| 16 | |
| 17 | describe('inlfightRequestThrottle', function() { |
| 18 | it('Unit: Should shed load', function(done) { |
no outgoing calls
no test coverage detected