From: Joe Van Dyk Date: 2005-12-22T08:30:04+09:00 Subject: unit tests == ugly code? I've found that when I write the tests first, and then write the code, I'm not very concerned about what the code looks like. When the code passes the test, I drink a beer and party, then move on to the next test. In practice, this means that I'm using a lot of ugly regex's, poorly named variables, and so on. I'd be more concerned about the readability of the code if there wasn't unit tests behind it. I'm generally in a rush to finish whatever I'm doing, and figure that since I have a bunch of tests, refactoring stuff later won't be a big deal. Anyone else out there like me? Or should I be anal about writing good code even with the tests? I guess that would be ideal, but I'd rather get the functionality done first. Joe