From: Ian B. <ia...@co...> - 2003-05-07 17:49:44
|
On Wed, 2003-05-07 at 10:16, Frank Barknecht wrote: > Hallo, > Ian Bicking hat gesagt: // Ian Bicking wrote: > > > Okay... hence the request for a unit test :) > > I don't know, how do write real unit tests ;( Look at the tests in tests/test.py, JoinTest2 being the obvious starting point for your problem (maybe adding another method to it). Unit tests remove other dependencies and the possibility of the bug lying elsewhere in the system. All it comes down to is isolating the failure case, at which time I expect the problem will be easy to identify. Short of a proper unit test, a self-contained script that exemplifies the problem will do (and is probably easy enough to convert to a unit test). Ian |