The MoreUnit plugin for Java is quite nice, I'd like to have this for pydev to.
The feature I miss the most is the quick navigation between the test and the implementation.
while I can "mimic" this by using the globals browser, it is not as quick.
I propose a simple action ctrl+u or something which quick-jumps between the testcase and the implementation.
If the cursor is currently at a method named "compute_myvalue" in the class MyClass it will try find the method "test_compute_myvalue" in class "MyClassTest"
if however the cursor is already at this position, it will try find the class MyClass, and then grab the most likely method "compute_my_value".
The decorations and generation of missing tests that MoreUnit does is more of a bonus, I'd settle for the quick-jumping between test and implementation.