Is there a way to basically mark a TestUnit test as a “todo”? I thought I could do it by using pending at the top of the test, but that still runs the test (and thus it’s red). I’d like to basically do the same thing, but not actually run the test (just skip over it).
Does anybody know of a way to do this?
Thanks!
if these are test case stubs, you could just put assert true as the only assertion and a puts in the test to describe what needs to be done. this of course wouldn’t help if your tests have failing assertions unless you comment them out.