From: "Berger, Daniel" Date: 2003-06-19T03:22:25+09:00 Subject: Re: Test::Unit GUI > -----Original Message----- > From: John Platte [mailto:john.platte@nikaconsulting.com] > Sent: Wednesday, June 18, 2003 11:34 AM > To: ruby-talk@ruby-lang.org > Subject: Test::Unit GUI > > > Hello, > > I'm planning on doing a lot of test-driven coding soon, so > I'm scoping > out the fastest way to trigger Test::Unit runs as I code. I > got the GTK > GUI going and found that hitting the "Run" button doesn't reload the > code, it just runs the test again. > > 1. Is there an existing test-run GUI that reloads the code at > each test > run a la junit? John, Without looking, I would guess that it's a simple matter of replacing "require" with "load" somewhere in the GUI code. Using load should probably be the default anyway. Send it on as a bug to Nathaniel. Regards, Dan