On 10/31/07, Jean-Paul Calderone <exarkun@divmod.com> wrote:
When your factory begins listening on its first port.

  f = YourFactory()
  reactor.listenTCP(0, f) # <- here
  reactor.run()

Jean-Paul

So what do I need to do in my unittests to get this to work? I'm using a FileWrapper now to mock this up, so I never run listenTCP() of course.

Brendon